作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个简单的 TableView :
目前,这是我使用 UIContextualAction 向左滑动时所得到的:
我当前的代码:
override func tableView(_ tableView: UITableView,
leadingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration?
{
let editAction = UIContextualAction(style: .normal, title: "Modifier", handler: { (ac:UIContextualAction, view:UIView, success:(Bool) -> Void) in
print("OK, marked as Closed")
success(true)
})
editAction.image = #imageLiteral(resourceName: "leftView")
//editAction.backgroundColor = .black
let configuration = UISwipeActionsConfiguration(actions: [editAction])
//configuration.performsFirstActionWithFullSwipe = false
return configuration
}
这就是我想要的:
正如您所看到的,滑动按钮一直移动到单元格的中间。请问我该怎么做?
最佳答案
在 iOS11 中,tableviewcell 滑动似乎只能接受特定尺寸的图像或仅接受文本。
另一个选项是向桌面 View 添加手势。
或者向 tableviewcell 添加平移手势,首先在自定义单元格中创建一个 View ,然后在单元格中的该 View 上使用 UIPanGestureRecognizer。将需要的按钮添加到自定义单元格中,当您在自定义单元格中滑动 View 时,自定义单元格中的按钮将可见。
关于ios - 如何为 TableView 中的 UIContextualAction 提供自定义宽度(滑动),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47981247/
我是一名优秀的程序员,十分优秀!