UITableView.DeleteRows(NSIndexPath[], UITableViewRowAnimation) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Supprimez les lignes référencées dans le atIndexPaths
tableau. La suppression peut éventuellement être animée.
[Foundation.Export("deleteRowsAtIndexPaths:withRowAnimation:")]
public virtual void DeleteRows (Foundation.NSIndexPath[] atIndexPaths, UIKit.UITableViewRowAnimation withRowAnimation);
abstract member DeleteRows : Foundation.NSIndexPath[] * UIKit.UITableViewRowAnimation -> unit
override this.DeleteRows : Foundation.NSIndexPath[] * UIKit.UITableViewRowAnimation -> unit
Paramètres
- atIndexPaths
- NSIndexPath[]
Tableau d’objets NSIndexPath qui identifient les lignes à supprimer.
- withRowAnimation
- UITableViewRowAnimation
Type d’animation à utiliser lors de la suppression des lignes (par exemple, disparaître ou glisser à partir du bas).
- Attributs
Remarques
Lorsque cette méthode est appelée à l’intérieur d’un bloc d’animation défini par BeginUpdates() et EndUpdates(), toutes les insertions de lignes ou de sections sont différées jusqu’à ce que les suppressions aient été traitées. Cela se produit quel que soit l’ordre des appels de méthode d’insertion et de suppression dans le bloc d’animation.