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.