摘要:
往上找的,纯粹是为了自己查找方便!UITextFielddelegate委托方法注释:- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField{ //返回一个BOOL值,指定是否循序文本字段开始编辑 return YES; } - (void)textFieldDidBeginEditing:(UITextField *)textField{ //开始编辑时触发,文本字段将成为first responder}- (BOOL)textFieldShouldEndEditing:(UITextField *)textField{ .. 阅读全文