UITextField Delegate 键盘弹起

#pragma mark - UITextField Delegate 键盘弹起
- (BOOL)textFieldShouldReturn:(UITextField *)textField
{
    [textField resignFirstResponder];
    return YES;
}

#pragma mark - 基于UIView点击编辑框以外的虚拟键盘收起
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
    
    if (![TextField isExclusiveTouch]) {
        
        [TextField resignFirstResponder];
    }
}


你可能感兴趣的:(UITextField Delegate 键盘弹起)