UITableViewSource.ShouldIndentWhileEditing(UITableView, NSIndexPath) 方法

定义

当表处于编辑模式时,指定的行 indexPath 是否应缩进。

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

参数

tableView
UITableView

包含行的表视图。

indexPath
NSIndexPath

行的位置。

返回

true 如果行的内容应缩进,则为 ;否则为 false

属性

注解

如果未实现此属性,则默认值为 true ,当表视图处于编辑模式时,行缩进。

此方法用于强制在包含表视图处于编辑模式时缩进行的内容,而不考虑行本身是否显示编辑控件。 缩进意味着行内容与可能显示编辑控件的其他行“排队”。

这种类型的缩进与用于缩进行内容以表示行之间的分层关系无关 IndentationLevel(UITableView, NSIndexPath)

在 [UITableViewDelegate] 中声明

适用于