在自定义 table 单元格上更改 leading/trailingSwipeActions 的高度
Changing height of leading/trailingSwipeActions on a custom table cell
我目前正在开发 Swift 4 iOS 应用程序。我有一个显示在卡片视图中的自定义 table 单元格(参见下面的示例屏幕截图)。
当我在一行上实现 SwipeActions 时,滑动菜单的背景颜色的高度占据了单元格行的整个高度。
我希望它只是卡片视图的高度。我应该补充一点,每一行都有不同的高度,因为它们包含不同长度的小块文本。有没有办法做到这一点?
这是不可能的。寻找另一种自定义方法。
存在执行此操作的替代方法。您可以更改大小,但它是旧模式,如更改高度 (view.size.height= (newvalue))
。要更改位置,请使用 (view.frame.origin.y = (newvalue))
。它将在静态高度单元格和 iOS >=11 中工作。这不适用于动态高度单元格。在 tableviewcell
的委托方法中进行这些更改
func tableView(_ tableView: UITableView, willBeginEditingRowAt indexPath: IndexPath) {
if let cell = tableView.cellForRow(at: indexPath) as? TempcellTableViewCell{
if let spvcell = cell.superview{
for svswipe in spvcell.subviews{
let typeview = type(of: svswipe.self)
if typeview.description() == "UISwipeActionPullView"{
svswipe.frame.size.height = 100//size you want
svswipe.frame.origin.y = 5
}
}
}
}
}
和 leadingSwipeActionsConfigurationForRowAt/trailingSwipeActionsConfigurationForRowAt
的功能。在 return UISwipeActionsConfiguration 对象之前进行以下更改。
func tableView(_ tableView: UITableView, leadingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {
let Cancel = UIContextualAction.init(style: .normal, title: "Cancel") { (action, view, nil) in
print("Cancel")
}
Cancel.backgroundColor = UIColor.red
let config = UISwipeActionsConfiguration.init(actions: [Cancel])
config.performsFirstActionWithFullSwipe = false // Prevent swiping
tableView.reloadRows(at: [indexPath], with: .none)
return config
}
这个解决方案对我有用:D ...我希望这个答案可以帮助你
我目前正在开发 Swift 4 iOS 应用程序。我有一个显示在卡片视图中的自定义 table 单元格(参见下面的示例屏幕截图)。
当我在一行上实现 SwipeActions 时,滑动菜单的背景颜色的高度占据了单元格行的整个高度。
我希望它只是卡片视图的高度。我应该补充一点,每一行都有不同的高度,因为它们包含不同长度的小块文本。有没有办法做到这一点?
这是不可能的。寻找另一种自定义方法。
存在执行此操作的替代方法。您可以更改大小,但它是旧模式,如更改高度 (view.size.height= (newvalue))
。要更改位置,请使用 (view.frame.origin.y = (newvalue))
。它将在静态高度单元格和 iOS >=11 中工作。这不适用于动态高度单元格。在 tableviewcell
func tableView(_ tableView: UITableView, willBeginEditingRowAt indexPath: IndexPath) {
if let cell = tableView.cellForRow(at: indexPath) as? TempcellTableViewCell{
if let spvcell = cell.superview{
for svswipe in spvcell.subviews{
let typeview = type(of: svswipe.self)
if typeview.description() == "UISwipeActionPullView"{
svswipe.frame.size.height = 100//size you want
svswipe.frame.origin.y = 5
}
}
}
}
}
和 leadingSwipeActionsConfigurationForRowAt/trailingSwipeActionsConfigurationForRowAt
的功能。在 return UISwipeActionsConfiguration 对象之前进行以下更改。
func tableView(_ tableView: UITableView, leadingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {
let Cancel = UIContextualAction.init(style: .normal, title: "Cancel") { (action, view, nil) in
print("Cancel")
}
Cancel.backgroundColor = UIColor.red
let config = UISwipeActionsConfiguration.init(actions: [Cancel])
config.performsFirstActionWithFullSwipe = false // Prevent swiping
tableView.reloadRows(at: [indexPath], with: .none)
return config
}
这个解决方案对我有用:D ...我希望这个答案可以帮助你