gpt4 book ai didi

ios - 如何防止 UITableViewCell 在编辑模式下使用前导空格?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:16:40 27 4
gpt4 key购买 nike

我有一个 tableView,在编辑模式下我不想使用前导空格,而且我想让内容使用全部可用宽度。

enter image description here

self.tableView.setEditing(true, animated: false)

我这样设置编辑风格:

override func tableView(tableView: UITableView, editingStyleForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCellEditingStyle {

return .None
}}

最佳答案

UITableViewDelegate 有一个方法就是为了这个目的

override func tableView(tableView: UITableView, shouldIndentWhileEditingRowAtIndexPath indexPath: NSIndexPath) -> Bool {

return false
}

关于ios - 如何防止 UITableViewCell 在编辑模式下使用前导空格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27501429/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com