将单元格的重新排序属性设置为 NO

发布于 2024-11-09 07:47:46 字数 84 浏览 0 评论 0原文

我们可以专门将单元格的重新排序属性(使用+按钮添加单元格)设置为NO吗?我无法将编辑样式设置为“否”,因为那样我什至无法在“添加单元格”中找到“+”按钮。

Can we specifically set the re-ordering property of a cell (Add cell with + button) to NO? I cannot set editingStyle to NO as then I would not get even the + button in Add cell.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

琉璃梦幻 2024-11-16 07:47:46

使用委托方法:tableView:canMoveRowAtIndexPath:

您应该通过检查indexPath 是什么来使用它,如果indexPath 是您不希望重新排序启用的单元格的indexPath,则返回NO。

Use the delegate method: tableView:canMoveRowAtIndexPath:.

You should use it by checking to see what the indexPath is and then return NO if the indexPath is the indexPath of a cell you do not want reorderingEnabled on.

仙女 2024-11-16 07:47:46

您可以将单元格的 showsReorderControl 设置为 NO,实现 tableView:moveRowAtIndexPath:toIndexPath: 并为 返回 NO >tableView:canMoveRowAtIndexPath:

http://developer.apple.com/library/ios/documentation/uikit/reference/UITableViewCell_Class/Reference/Reference.html#//apple_ref/occ/instp/UITableViewCell/showsReorderControl

You can set a cell's showsReorderControl to NO, implement tableView:moveRowAtIndexPath:toIndexPath:and return NO for tableView:canMoveRowAtIndexPath:.

http://developer.apple.com/library/ios/documentation/uikit/reference/UITableViewCell_Class/Reference/Reference.html#//apple_ref/occ/instp/UITableViewCell/showsReorderControl

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文