Let's consider the following code:
protocol A {
func doA()
}
extension A {
func registerForNotification() {
NSNotificationCenter.defaultCenter().addObserver(self, selector: Selector("keyboardDidShow:"), name: UIKeyboardDidShowNotification, object: nil)
}
func keyboardDidShow(notification: NSNotification) {
}
}
Now look at a UIViewController subclass that implements A:
class AController: UIViewController, A {
override func viewDidLoad() {
super.viewDidLoad()
self.registerForNotification()
triggerKeyboard()
}
func triggerKeyboard() {
// Some code that make key board appear
}
func doA() {
}
}
But surprisingly this crashes with an error:
keyboardDidShow:]: unrecognized selector sent to instance 0x7fc97adc3c60
So should I implement the observer in the view controller itself? Can't it stay in the extension?
Following things already tried.
making A a class protocol. Adding keyboardDidShow to protocol itself as signature.
protocol A:class {
func doA()
func keyboardDidShow(notification: NSNotification)
}
extension A{}
??? Are you talking aboutextension Controller{}
– Aphorizeextension A{}
. New feature in Swift 2 onwards. Which is called protocol extensions. Which enables even adding default functionality to protocol methods. – Quoinfunc keyboardDidShow(notification: NSNotification)
which makes a match withSelector("keyboardDidShow:")
– Quoin