UITableViewDelegate.ShouldHighlightRow(UITableView, NSIndexPath) 方法

定义

在突出显示之前调用。 如果此方法返回 false,则不会突出显示该行。

[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

参数

tableView
UITableView

UITableView 所在的 。

rowIndexPath
NSIndexPath

要突出显示的行的位置。

返回

true 如果应突出显示行,则为 ; false 否则为 。

属性

注解

此方法是在高 (在 上查看 UITableView备注中的“突出显示和选择”讨论之前调用的。 应用程序开发人员可以重写此方法,以便更精细地控制行选择。

此方法的默认实现返回 true

适用于