Слава @GxocT за отличный обходной путь! Очень помогли мои пользователи.
Но я хотел поделиться своим кодом на основе решения @GxocT, надеясь, что он поможет другим в этом сценарии.
Мне нужно было, CNContactViewControllerDelegate
contactViewController(_:didCompleteWith:)
чтобы меня вызвали при отмене (а также сделали).
Также мой код не был в UIViewController
так что нетself.navigationController
Я также не люблю использовать распаковки с применением силы, когда могу помочь. Я был укушен в прошлом, поэтому я приковал if let
s в настройке
Вот что я сделал:
Расширьте CNContactViewController
и поместите функцию Swizzle
там.
В моем случае в функции swizzle просто вызовите
CNContactViewControllerDelegate
делегата
contactViewController(_:didCompleteWith:)
с помощью self
и
self.contact
объекта из контроллера контактов
В коде установки убедитесь, что вызов swizzleMethod
class_getInstanceMethod
указывает CNContactViewController
класс вместоself
И код Swift:
class MyClass: CNContactViewControllerDelegate {
override func viewDidLoad() {
super.viewDidLoad()
self.changeImplementation()
}
func changeCancelImplementation() {
let originalSelector = Selector(("editCancel:"))
let swizzledSelector = #selector(CNContactViewController.cancelHack)
if let originalMethod = class_getInstanceMethod(object_getClass(CNContactViewController()), originalSelector),
let swizzledMethod = class_getInstanceMethod(object_getClass(CNContactViewController()), swizzledSelector) {
method_exchangeImplementations(originalMethod, swizzledMethod)
}
}
func contactViewController(_ viewController: CNContactViewController, didCompleteWith contact: CNContact?) {
// dismiss the contacts controller as usual
viewController.dismiss(animated: true, completion: nil)
// do other stuff when your contact is canceled or saved
...
}
}
extension CNContactViewController {
@objc func cancelHack() {
self.delegate?.contactViewController?(self, didCompleteWith: self.contact)
}
}
Клавиатура по-прежнему отображается на мгновение, но падает сразу после закрытия контроллера контактов.
Будем надеяться, что яблоко исправит это