ISO TextField遏止弹出软键盘

ISO TextField阻止弹出软键盘-(BOOL)textFieldShouldBeginEditing:(UITextField *)textField{if (textFiel

ISO TextField阻止弹出软键盘

-(BOOL)textFieldShouldBeginEditing:(UITextField *)textField{    if (textField==sroundbodyname) {//只有sroundbodyname这个textfield不要弹出        [self selectAroundBody];        return NO;    }else{        return YES;    }}
?