所以我有一张桌子,我已经做了一些" hack"所以说。 " hack"是创建一个颜色和高度比实际(现在透明)单元格更小的UIView
,使其看起来像所有单元格之间的间距。
现在我的问题是,"想象中"有一个10个单位的差距。细胞到细胞的实际细胞。这意味着当我添加UITableViewRowAction
时,它将如下所示:
显然我希望它具有相同的高度。
func tableView(_ tableView: UITableView, editActionsForRowAt indexPath: IndexPath) -> [UITableViewRowAction]? {
let more = UITableViewRowAction(style: .normal, title: "More") { action, index in
print("more button tapped")
}
more.backgroundColor = UIColor.gray
return [more]
}
这就是我现在所拥有的..但我真的不知道如何调整高度
答案 0 :(得分:0)
编辑我误读了这个问题。您真正需要知道的是,您是否为tableViewCell的编辑操作提供了自定义视图。这里有一个详细的教程:https://www.raywenderlich.com/62435/make-swipeable-table-view-cell-actions-without-going-nuts-scroll-views