UITextField not getting keyboard input

后端 未结 4 724
我在风中等你
我在风中等你 2020-12-09 05:51

I\'m having troubles entering text into an UITextField under a SVProgressHUD (Basically an UIView with a full-screen transparent UIWindow and some UIView subviews showing te

4条回答
  •  孤城傲影
    2020-12-09 06:27

    Have you implemented the method....

    - (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text
    

    ...to filter out any unwanted characters? If so, perhaps it's being a little overzealous with the filtering?

提交回复
热议问题