Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以 UITextField 可以接受键盘输入,但是有什么方法可以检测键盘上的特定按钮(特别是外部键盘)何时被按下/释放?
如果没有,是否可以直接连接到 iPad/iPhone 的蓝牙键盘并直接获取它们的信号?
您可以使用 UITextField 进行用户输入并实现其委托方法以控制用户输入的内容。您可以实施
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
每次用户在文本字段中输入字符时都会调用它,并检查其中输入的字符。