我处于用户在没有退出键盘的情况下将数据输入 UITextField 的情况下,他按下 Next 按钮转到下一页。
That textfield is in custom cell with UITextView
. 现在我想在用户输入时捕获该 UITableView 的每个文本字段和 UITextView 中的所有内容,因为在单击 Next 按钮时我需要保存数据。
到目前为止,我已经实现了以下方法,但是当用户将数据输入 TextField 并直接按 Next 按钮而不返回键盘时,这些方法都没有被调用
- (void)textFieldDidEndEditing:(UITextField *)textField
{
NSString *strTitle = [textField.text stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
textField.text = strTitle;
}
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
return YES;
}
- (BOOL)textFieldShouldEndEditing:(UITextField *)textField
{
[textField resignFirstResponder];
return YES;
}
在 Next 之前从 TextFields 中保存的最佳方法是什么?