UITextField 禁止键盘弹出
2015-12-04 本文已影响1151人
旺仔爸
今天做一个弹窗效果需要禁止金盘弹出
#pragma mark - textField detegate
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField{
[textField resignFirstResponder];
return NO;
}
今天做一个弹窗效果需要禁止金盘弹出
#pragma mark - textField detegate
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField{
[textField resignFirstResponder];
return NO;
}