I'm trying to add a default behavior on some UITextFieldDelegate
's methods using protocol extensions like so :
extension ViewController: UITextFieldDelegate {
// Works if I uncommented this so I know delegates are properly set
// func textFieldShouldReturn(textField: UITextField) -> Bool {
// textField.resignFirstResponder()
// return true
// }
}
extension UITextFieldDelegate {
func textFieldShouldReturn(textField: UITextField) -> Bool {
textField.resignFirstResponder()
return true
}
}
As you may guess, the keyboard never dismiss. I can't really see where's the problem here. Is this a language limitation ? Did someone already success doing it ?
EDIT :
As @Logan suggested, default protocol's method implementation doesn't work with protocols marked as @objc
. However, UITextFieldDelegate
has the following signature public protocol UITextFieldDelegate : NSObjectProtocol {...}
I've test default implementation for NSObjectProtocol
and it seems to works fine :
protocol Toto: NSObjectProtocol {
func randomInt() -> Int
}
extension Toto {
func randomInt() -> Int {
return 0
}
}
class Tata: NSObject, Toto {}
let int = Tata().randomInt() // returns 0
Good discussion here, and exactly what I am suspecting at this point as well. One other thing not mentioned here - perhaps this might be due to a wider issue of obj-c not being able to access the Swift protocol extension implementations.
For example, the following code:
Will generate the following in the Swift generated header for the extension:
However, using protocol extensions as follows (similar to your post):
Generates the following in the Swift header for the protocol:
The implementation is not visible at all, and so it seems to imply protocol extension implementations are not supported from obj-c. I also found someone asked that question here (although no answers yet): Can Swift Method Defined on Extensions on Protocols Accessed in Objective-c
Unfortunately, I haven't yet found any official apple docs about this limitation.
I can't be 100% positive, but here's what I believe is happening:
Protocol extensions aren't accessible from
ObjC
. SinceUITextFieldDelegate
is anObjC
protocol, its reliant onObjC
dispatching. As far as the compiler is concerned, the methods in your default implementation are inaccessible, even though they do exist.To clarify, we can extend these protocols if its truly an extension and adds behavior. This behavior will only be accessible in Swift and shouldn't be problematic in any way.
The problem is default implementations not being
ObjC
accessible.Here's a quick example of a custom version:
Xcode suggests appending
@objc
but it will keep suggesting this over and over again until you get@objc @objc @objc Hi : ...
Based on our conversation below, I made this which seems to be working. I can't fully explain why yet:
Ok, I realize that I'm considering a different problem, and while this compiles, it won't work, and the issue is dynamic dispatch. If you try to append your method w/
@objc
, ordynamic
, the compiler will warn you that you can't dispatch this way, except on classes. Since a protocol exception doesn't conform to this, when ObjC dispatches the message send, it can't find the implementation in your extension.Since Swift is constantly updating, here's when this answer was applicable:
Swift 2.0 Xcode 7 GM