让我们考虑以下代码:
protocol A {
func doA()
}
extension A {
func registerForNotification() {
NSNotificationCenter.defaultCenter().addObserver(self, selector: Selector("keyboardDidShow:"), name: UIKeyboardDidShowNotification, object: nil)
}
func keyboardDidShow(notification: NSNotification) {
}
}
现在看一个实现 A 的 UIViewController 子类:
class AController: UIViewController, A {
override func viewDidLoad() {
super.viewDidLoad()
self.registerForNotification()
triggerKeyboard()
}
func triggerKeyboard() {
// Some code that make key board appear
}
func doA() {
}
}
但令人惊讶的是,这会因错误而崩溃:
keyboardDidShow:]: 无法识别的选择器发送到实例 0x7fc97adc3c60
那么我应该在视图控制器本身中实现观察者吗?它不能留在扩展中吗?
以下事情已经尝试过。
使 A 成为类协议。将keyboardDidShow 添加到协议本身作为签名。
protocol A:class {
func doA()
func keyboardDidShow(notification: NSNotification)
}