UIView Click events. Popup view, background blur.

Source: Internet
Author: User
Tags set background

@interface Countryviewcontroller

Background

@property (Strong, nonatomic) UIView *backview;

End

Set background blur

-(UIView *) backview{

if (!_backview) {

_backview = [[UIView alloc]initwithframe:self.view.bounds];

Bokeh of background

Uicolor *mycolor = [Uicolor colorwithwhite:0.5 alpha:0.5];

_backview.backgroundcolor = MyColor;

[Self.view addsubview:self. Backview];

Set in front of the current controller

[Self.view bringsubviewtofront:self. Backview];

Hide at the beginning

Self. Backview.hidden = YES;

Add a Click event

UITapGestureRecognizer *tapgesture = [[UITapGestureRecognizer alloc]initwithtarget:self Action: @selector ( Actiondo)];

[_backview Addgesturerecognizer:tapgesture];

}

return _backview;

}

Implementation method

-(void) actiondo{

NSLog (@ "1231231231231231231231231231231");

}

Set a button event

-(void) click{

Show UIView

Self. Backview.hidden = NO;

}

UIView Click events. Popup view, background blur.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.