Implementation of transparent background Effects in iOS development [for drop-down menu pages and sharing pages], ios translucent

Source: Internet
Author: User

Implementation of transparent background Effects in iOS development [for drop-down menu pages and sharing pages], ios translucent

Master haomeng is devoted to his contribution and respects the author's Labor achievements. Do not repost them.

If the article is helpful to you, you are welcome to donate to the author, support haomeng master, the amount of donation is free, focusing on your mind ^_^

I want to donate: Click to donate

Cocos2d-X source code download: point I send

Game official download: http://dwz.cn/RwTjl

Game video preview: http://dwz.cn/RzHHd

Game Development blog: http://dwz.cn/RzJzI

Game source code transfer: Http://dwz.cn/Nret1


For example, achieve the following results:


The background is a translucent masked layer effect. After you click it, the background disappears.


How to Implement the masked layer:

1. initialize UIView as the background layer

2. Set the opaque attribute and background color of the background View.

3. Add UIGestureRecognizer to respond to background touch operations

4. Add the background view to the window and modify the background color.

5. Remove the view and modify the background color in the area to be hidden.


Some code:

    //background init and tapped    UIView *background = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.height)];    background.backgroundColor = [UIColor colorWithWhite:0.0 alpha:0.0];    background.opaque = NO;    UIGestureRecognizer *gesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(backgroundTapped:)];    [background addGestureRecognizer:gesture];    self.shareBackGroundView = background;

    self.shareBackGroundView.backgroundColor = [UIColor colorWithWhite:0.0 alpha:0.3];        AppDelegate *delegate = (AppDelegate *)[UIApplication sharedApplication].delegate;    [delegate.window addSubview:self.shareBackGroundView];

    self.shareBackGroundView.backgroundColor = [UIColor colorWithWhite:0.0 alpha:0.0];    [self.shareBackGroundView removeFromSuperview];

Master haomeng is devoted to his contribution and respects the author's Labor achievements. Do not repost them.

If the article is helpful to you, you are welcome to donate to the author, support haomeng master, the amount of donation is free, focusing on your mind ^_^

I want to donate: Click to donate

Cocos2d-X source code download: point I send

Game official download: http://dwz.cn/RwTjl

Game video preview: http://dwz.cn/RzHHd

Game Development blog: http://dwz.cn/RzJzI

Game source code transfer: Http://dwz.cn/Nret1

Copyright Disclaimer: This article is an original article by the blogger and cannot be reproduced without the permission of the blogger.

Related Article

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.