下面的方法使用 Return 键关闭 UITextView 键盘。
在您的控制器中,将 UITextView 的 Delegate 设置为 self ,如下所示:
myTextView.delegate=self;
然后添加这个方法:
- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range
replacementText:(NSString *)text
{
// Any new character added is passed in as the "text" parameter
if ([text isEqualToString:@"\n"]) {
// Be sure to test for equality using the "isEqualToString" message
[textView resignFirstResponder];
// Return FALSE so that the final '\n' character doesn't get added
return FALSE;
}
// For any other character return TRUE so that the text gets added to the view
return TRUE;
}
如果您没有将 Return 键用作真正的 Return 键(例如添加新行),这应该可以工作。