Нажмите предварительный просмотр, чтобы показать целевой VC - PullRequest
2 голосов
/ 26 октября 2019

Я пытался внедрить новое UIContextMenuConfiguration для моего tableView приложения. Я также добавил новые методы делегата, как показано ниже. Это хорошо работает, но я бы хотел добавить такую ​​функцию, как родные приложения для iOS 13. Нажмите Предварительный просмотр, чтобы показать пункт назначения!

Мой вопрос: возможно ли реализовать такую ​​функцию? Я использую Xcode 11.1 GM и Swift 5.1

override func tableView(_ tableView: UITableView, contextMenuConfigurationForRowAt indexPath: IndexPath, point: CGPoint) -> UIContextMenuConfiguration? {
    let provider = UIContextMenuConfiguration.init(identifier: indexPath as NSCopying, previewProvider: { () -> UIViewController? in
        let vc = ViewController.init()
        return vc
    }) { (elements) -> UIMenu? in
        let addToList = UIAction.init(title: "Add to list") { (action) in
            self.performSegue(withIdentifier: "id", sender: self)
        }
        addToList.image = UIImage.init(systemName: "plus")
        return UIMenu.init(title: "", image: nil, identifier: nil, options: .destructive, children: [addToList])
    }
    return provider
}

override func tableView(_ tableView: UITableView, willCommitMenuWithAnimator animator: UIContextMenuInteractionCommitAnimating) {
    if let vc = animator.previewViewController {
        self.show(vc, sender: self)
    }
}

1 Ответ

1 голос
/ 27 октября 2019

Я нашел мою проблему, это моя вина. Я использовал неправильный метод, поэтому я просто заменил на правильный. Я заменил метод willCommitMenuWithAnimator на willPerformPreviewActionForMenuWith и хорошо работаю:

override func tableView(_ tableView: UITableView, willPerformPreviewActionForMenuWith configuration: UIContextMenuConfiguration, animator: UIContextMenuInteractionCommitAnimating) {
    animator.preferredCommitStyle = .pop
    animator.addCompletion {
        guard let vc = UIStoryboard.init(name: "Main", bundle: nil).instantiateViewController(identifier: "ViewController") as? ViewController else { return }
        // 1. Present option
        self.present(vc, animated: true, completion: nil)

        // 2. Push option
        self.navigationController?.pushViewController(vc, animated: true)
    }
}
...