点击背景页面取消键盘

来源:互联网 发布:苹果便签软件关闭 编辑:程序博客网 时间:2024/05/22 03:38

//在页面加载前

-(void)loadView

{

    //ViewContrller中的View变为UIContrl的对象

    UIControl *control = [[UIControl alloc]initWithFrame:[UIScreen mainScreen].bounds];

    [self setView:control];


}

//添加点击View页面的事件

    UIControl *control = self.view;

    //设置背景色

    self.view.backgroundColor = [UIColor whiteColor];

    [control addTarget:self action:@selector(resignView) forControlEvents:UIControlEventTouchUpInside];

//点击空白取消编辑状态

-(void)resignView

{

    [self.view endEditing:YES];

}

0 0
原创粉丝点击