Implementing UITextFieldDelegate with Swift

前端 未结 12 1273
后悔当初
后悔当初 2020-12-08 08:11

I have my ViewController class which implements UITextFieldDelegate. I have no auto complete for the funcs such as textFieldShouldBeginEditing. Is this a bug in XCode 6?

12条回答
  •  情书的邮戳
    2020-12-08 09:00

    I spent a long night trying to fix this and the problem was that my coworker implemented all the logic in textFieldShouldBeginEditing instead of textFieldDidBeginEditing and sometimes textFieldShouldBeginEditing was not called when I used the first responder between TextFields ...

提交回复
热议问题