码迷,mamicode.com
首页 > 其他好文 > 详细

UIView点击事件。弹出视图,背景虚化。

时间:2016-07-20 17:55:32      阅读:298      评论:0      收藏:0      [点我收藏+]

标签:

@interface CountryViewController

//背景

@property (strong, nonatomic) UIView *BackView;

end

//设置背景虚化

-(UIView *)BackView{

    if (!_BackView) {

        _BackView = [[UIView alloc]initWithFrame:self.view.bounds];

        //背景虚化

        UIColor *myColor = [UIColor colorWithWhite:0.5 alpha:0.5];

        _BackView.backgroundColor = myColor;

        [self.view addSubview:self.BackView];

//设置在当前控制器前面

        [self.view bringSubviewToFront:self.BackView];

//一开始隐藏

        self.BackView.hidden = YES;

        

        //添加点击事件

        UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(actiondo)];

        [_BackView addGestureRecognizer:tapGesture];

    }

    return _BackView;

}

//实现方法

-(void)actiondo{

    NSLog(@"1231231231231231231231231231231");

}

 //设置一个按钮事件

-(void)click{

  //显示UIview

  self.BackView.hidden = NO;

}

UIView点击事件。弹出视图,背景虚化。

标签:

原文地址:http://www.cnblogs.com/2015-adong/p/5689058.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!