swift 2.0 - UITextFieldDelegate protocol extension not working swift 2.0 - UITextFieldDelegate protocol extension not working swift swift

swift 2.0 - UITextFieldDelegate protocol extension not working


I can't be 100% positive, but here's what I believe is happening:

Protocol extensions aren't accessible from ObjC. Since UITextFieldDelegate is an ObjC protocol, its reliant on ObjC 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:

@objc protocol Test : class {    func someFunc() -> String}extension Test {    func someFunc() -> String {        return ""    }}// Fails here 'candidate is not @objc but protocol requires it`class Hi : NSObject, Test {}

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:

@objc public protocol Toto: UITextFieldDelegate {    optional func randomInt() -> Int}extension Toto {    func randomInt() -> Int {        return 0    }    func textFieldShouldReturn(textField: UITextField) -> Bool {        return false    }}class Tata: NSObject, Toto {}

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, or dynamic, 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


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:

class MyViewController: UIViewController, MyTextFieldDelegateProtocol {    @IBOutlet weak var textField: UITextField!    override func viewDidLoad() {        super.viewDidLoad()        textField.delegate = self    }}extension MyViewController: UITextFieldDelegate {    func textFieldDidBeginEditing(textField: UITextField) {        print("shouldChangeCharactersInRange called")    }}

Will generate the following in the Swift generated header for the extension:

@interface MyViewController (SWIFT_EXTENSION(MyApp)) <UITextFieldDelegate>- (void)textFieldDidBeginEditing:(UITextField * __nonnull)textField;@end

However, using protocol extensions as follows (similar to your post):

class MyViewController: UIViewController, MyTextFieldDelegateProtocol {    // ...}@objc protocol MyTextFieldDelegateProtocol: UITextFieldDelegate {}extension MyTextFieldDelegateProtocol {    func textFieldDidBeginEditing(textField: UITextField) {        print("shouldChangeCharactersInRange called")    }}

Generates the following in the Swift header for the protocol:

SWIFT_PROTOCOL("_TtP8MyApp27MyTextFieldDelegateProtocol_")@protocol MyTextFieldDelegateProtocol <UITextFieldDelegate>@end

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.