iphone:点击背景隐藏键盘

修改视图控制器的view属性,将它的底层类由UIView更改为UIControl

添加一个Action,Action是Touch Down

 

- (IBAction)backgroudTap:(id)sender {

    [myTextField resignFirstResponder];

}

记住你的UITextField的Outlet一定要是weak的属性(一般的Outlet都是weak的),不然会出错

-[UITextInputTraits resignFirstResponder]: unrecognized selector sent to instance

posted on 2012-05-04 21:10  老Zhan  阅读(622)  评论(0编辑  收藏  举报