ios 文本键盘回收

来源:互联网 发布:.group 域名含义 编辑:程序博客网 时间:2024/05/22 08:15

偶然在网络上搜到的试过一次 感觉还可以 给大家分享

    //键盘回收    UIControl *backGroundControl = [[UIControl alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];    backGroundControl.backgroundColor = [UIColor clearColor];    [self.view sendSubviewToBack:backGroundControl];    [backGroundControl addTarget:self action:@selector(backgroundTab) forControlEvents:UIControlEventTouchUpInside];    [self.view addSubview:backGroundControl];

backgroundTab这个方法添加放弃第一响应就OK了
 
0 0
原创粉丝点击