Compartir a través de


UITableViewDelegate.ShouldHighlightRow(UITableView, NSIndexPath) Método

Definición

Se llama antes del resaltado. Si este método devuelve false, la fila no se resaltará.

[Foundation.Export("tableView:shouldHighlightRowAtIndexPath:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 6, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual bool ShouldHighlightRow (UIKit.UITableView tableView, Foundation.NSIndexPath rowIndexPath);
abstract member ShouldHighlightRow : UIKit.UITableView * Foundation.NSIndexPath -> bool
override this.ShouldHighlightRow : UIKit.UITableView * Foundation.NSIndexPath -> bool

Parámetros

tableView
UITableView

en UITableView el que se encuentra la fila.

rowIndexPath
NSIndexPath

Ubicación de la fila que se va a resaltar.

Devoluciones

true es si la fila se debe resaltar; de lo contrario, false es .

Atributos

Comentarios

Se llama a este método antes de resaltar (vea la discusión "Resaltado y selección" en los comentarios sobre UITableView. Los desarrolladores de aplicaciones pueden invalidar este método para obtener un control más preciso sobre la selección de filas.

La implementación predeterminada de este método devuelve true.

Se aplica a