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 成为第一响应者?
确认您将创建的文本字段的委托与视图控制器绑定。并使用此委托方法:-
- (BOOL)textFieldShouldReturn:(UITextField *)textField { [textField resignFirstResponder]; return YES; }
这将在按下返回键时隐藏键盘。