1.设置背景半透明:
在开发过程中,很多需要设置控件的透明度,下面提供几种设置控件透明度的方法
UIView *titlesView = [[UIView alloc] init];
// 设置半透明背景色
titlesView.backgroundColor = [[UIColor whiteColor] colorWithAlphaComponent:0.5];
// titlesView.backgroundColor = [UIColor colorWithWhite:1.0 alpha:0.5];
// titlesView.backgroundColor = [UIColor colorWithRed:1.0 green:1.0 blue:1.0 alpha:0.5];
// 注意:子控件会继承父控件设置的alpha透明度,如果在titlesView添加一个label的话,label的透明度会跟随titlesView的透明变化
// titlesView.alpha = 0.5;
titlesView.frame = CGRectMake(0, 64, [UIScreen mainScreen].bounds.size.width, 35);