- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我尝试实现新方法 trailingSwipeActionsForRowAt
和 leadingSwipeActionsConfigurationForRowAt
来显示带有图标的行操作...
不幸的是,当我在拖尾滑动后将设备从横向旋转到纵向时,我遇到了一个奇怪的错误。
这是我的代码
var tableView: UITableView!
override func viewDidLoad() {
super.viewDidLoad()
tableView = UITableView()
tableView.delegate = self
tableView.dataSource = self
tableView.register(UITableViewCell.self, forCellReuseIdentifier: "Cell")
tableView.estimatedRowHeight = 100
view.addSubview(tableView)
tableView.translatesAutoresizingMaskIntoConstraints = false
tableView.topAnchor.constraint(equalTo: view.topAnchor).isActive = true
tableView.leftAnchor.constraint(equalTo: view.leftAnchor).isActive = true
tableView.rightAnchor.constraint(equalTo: view.rightAnchor).isActive = true
tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor).isActive = true
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 15
}
func numberOfSections(in tableView: UITableView) -> Int {
return 1
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as UITableViewCell
cell.textLabel?.text = "\(indexPath.row)"
cell.detailTextLabel?.text = "\(indexPath.row)"
cell.backgroundColor = .lightGray
return cell
}
func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool {
return true
}
@available(iOS 11.0, *)
func tableView(_ tableView: UITableView, trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration?
{
let deleteAction = UIContextualAction(style: .normal, title: "") { (action, view, handler) in
print("Delete Action Tapped")
}
deleteAction.backgroundColor = .red
deleteAction.image = UIImage(named: "icons8-info-50")
let defaultAction = UIContextualAction(style: .normal, title: nil) { (action, view, handler) in
print("default Action Tapped")
}
defaultAction.backgroundColor = .orange
defaultAction.image = UIImage(named: "icons8-info-50")
let swipeAction = UISwipeActionsConfiguration(actions: [deleteAction, defaultAction])
swipeAction.performsFirstActionWithFullSwipe = false
return swipeAction
}
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return 100
}
@available(iOS 11.0, *)
func tableView(_ tableView: UITableView, leadingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {
let deleteAction = UIContextualAction(style: .normal, title: "") { (action, view, handler) in
print("Delete Action Tapped")
}
deleteAction.backgroundColor = .blue
deleteAction.image = UIImage(named: "icons8-info-50")
let swipeAction = UISwipeActionsConfiguration(actions: [deleteAction])
swipeAction.performsFirstActionWithFullSwipe = false
return swipeAction
}
有什么想法吗?
谢谢
最佳答案
参见 this question .
您可以重置单元格的编辑状态,以便在 viewWillTransition(to:with:)
中使用 setEditing(_:animated:)
不再显示操作,当设备旋转时调用。
override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
super.viewWillTransition(to: size, with: coordinator)
tableView.setEditing(false, animated: true)
}
这仅在您调用 setEditing(_:animated:)
外部 协调器的 animate
方法时有效。在 animation
block 中将 editing 设置为 false 将无效。
关于swift - trailingSwipeActions 和旋转问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48153346/
我尝试实现新方法 trailingSwipeActionsForRowAt 和 leadingSwipeActionsConfigurationForRowAt 来显示带有图标的行操作... 不幸的是
我目前正在开发 Swift 4 iOS 应用程序。我有一个显示在卡片 View 中的自定义表格单元格(参见下面的示例屏幕截图)。 当我在一行上实现 SwipeActions 时,滑动菜单的背景颜色的高
我将我的 tablerowactions 更新为 swift 4 等效项,以便能够设置图标而不是文本作为用户在表格元素上向左滑动时显示的按钮。我的问题是,如果用户从右向左滑动而不是仅显示所有可用操作,
我是一名优秀的程序员,十分优秀!