Swift - UITableView editActionsForRowAtIndexPath открывает UIPresentationController при нажатии кнопки "Изменить".
Привет, есть ли способ открыть UIPresentationController, когда смахивание влево срабатывает, и он нажимает Edit
?
func tableView(tableView: UITableView, editActionsForRowAtIndexPath indexPath: NSIndexPath) -> [UITableViewRowAction]? {
let delete = ....
let edit = UITableViewRowAction(style: .Normal, title: "Edit") { action, index in
//OPEN UIPresentationController HERE
}
return [delete, edit]
}
2 ответа
Решение
Так же, как @patchdiaz, я не уверен на 100%, что вы хотели бы сделать. Однако этого блока кода может быть достаточно для настройки для достижения вашей цели:
override func tableView(tableView: UITableView, editActionsForRowAtIndexPath indexPath: NSIndexPath) -> [AnyObject]? {
let edit = UITableViewRowAction(style: .Normal, title: "Edit") { action, index in
// OPEN UIPresentationController HERE
let vc = UIViewController(nibName: nil, bundle: nil)
vc.view.frame = CGRect(x: 0, y: 0, width: 100, height: 200)
vc.view.backgroundColor = UIColor.orangeColor()
vc.modalPresentationStyle = .Popover
let popover = vc.popoverPresentationController!
let cell = tableView.cellForRowAtIndexPath(indexPath)!
var cellAbsolutePosition = cell.superview!.convertPoint(cell.frame.origin, toView: nil)
cellAbsolutePosition.x = cell.frame.width - 60
popover.sourceRect = CGRect(origin: cellAbsolutePosition, size: cell.frame.size)
popover.sourceView = tableView
self.presentViewController(vc, animated: true, completion: nil)
}
return [edit]
}
Он будет показывать всплывающее окно прямо в позиции кнопки "Редактировать", например так:
Не уверен, что вы спрашиваете здесь. Примерно так должно работать (это в Swift 2):
override func tableView(tableView: UITableView, editActionsForRowAtIndexPath indexPath: NSIndexPath) ->
[UITableViewRowAction]? {
let delete = ...
let edit = UITableViewRowAction(style: .Normal, title: "Edit") { [weak self] _ in
let viewController = ...
viewController.modalPresentationStyle = .Custom
self?.presentViewController(viewController, animated: true, completion: nil)
}
return [delete, edit]
}