摘要: 1 //退出键盘 只需一句,药到病除2 - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{3 4 [self.view endEditing:YES];5 } 阅读全文
posted @ 2014-02-23 17:47 —__MOMO__— 阅读(163) 评论(0) 推荐(0) 编辑
摘要: //此前要遵循UITextFieldDelegate代理。并且设置该文本框为当前控制器的代理//开始编辑的时候让整个view的高度网上移动- (void)textFieldDidBeginEditing:(UITextField *)textField{ [UIView animateWithDuration:0.3f animations:^{ CGRect curframe = self.view.frame; //不能直接修改frame的y值。需要先将其取出,然后再赋值回去 curframe.origin.y -= 70; self.vie... 阅读全文
posted @ 2014-02-23 17:45 —__MOMO__— 阅读(401) 评论(0) 推荐(0) 编辑