문제

I'm not sure why this is happening, wondering if someone can help.

I currently have a UITextfield delegate set to the ViewController. I've declared all the necessary methods. When I start typing, nothing shows up, but it is being detected per the NSLog I've inserted.

When I remove the delegate, then the text fields begins to work.

Any ideas?

도움이 되었습니까?

해결책

- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField

must return YES at some point

textField:shouldChangeCharactersInRange:replacementString:

must also return YES

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top