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