UITableViewSource.WillSelectRow(UITableView, NSIndexPath) 方法

定义

在即将选择行时调用。

[Foundation.Export("tableView:willSelectRowAtIndexPath:")]
public virtual Foundation.NSIndexPath WillSelectRow (UIKit.UITableView tableView, Foundation.NSIndexPath indexPath);
abstract member WillSelectRow : UIKit.UITableView * Foundation.NSIndexPath -> Foundation.NSIndexPath
override this.WillSelectRow : UIKit.UITableView * Foundation.NSIndexPath -> Foundation.NSIndexPath

参数

tableView
UITableView

包含行的表视图。

indexPath
NSIndexPath

要选择的行的位置。

返回

NSIndexPath要选择的行的 。 indexPath返回传入以选择该行的 ,返回替代NSIndexPath项以选择其他行,或返回null取消选择。

属性

注解

在选择行后调用此方法, (。用户已对行) 进行了触摸。 虽然行在向下触摸时突出显示,但这并不表示已进行选择。 用于 None 防止单元格在向下触摸时突出显示。

当表视图的 Editing 属性为 true 时,不会调用此方法,除非 AllowsSelectionDuringEditing 属性也是 true

在 [UITableViewDelegate] 中声明

适用于