xcode4.3 完成输入后 点击背景关闭键盘
时间:2014-06-02 19:06:40
收藏:0
阅读:219
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent
*)event{
[self.view
endEditing:YES];
}
把这个复制到视图对应的.m文件中,即可
评论(0)