1. 父控件透明 子控件也透明 解决蒙版上的uiview不透明的方法
cover.alpha = 0.7f;
change to (仅修改父控件颜色属性)
cover.backgroundColor = [UIColor colorWithRed:0 green:0 blue:0 alpha:0.7f];
2. 超出父控件剪切 用于隐藏图片等
popMenu.layer.masksToBounds = YES;
or
popMenu.clipsToBounds = YES;
3. 拉伸背景图片
UIImage *image = self.loginBtn.currentBackgroundImage ;
//拉伸 img
image = [image stretchableImageWithLeftCapWidth:image.size.width/2 topCapHeight:image.size.height/2];
4. 启动图黑
1.如果你LauncScreen 和 LaunchImage 同时都使用了,就有可能出现启动图黑屏 (建议只使用一种)
2.使用LaunchImage时出现黑屏,需要检查以下几个地方: (在LaunchScreen 将Info.plist中的 Launch screen interface file base name 删除,可解决黑屏.)