美文网首页
iOS-常用小技巧03

iOS-常用小技巧03

作者: Mr_Bob_ | 来源:发表于2016-06-16 15:24 被阅读16次
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);

相关文章

网友评论

      本文标题:iOS-常用小技巧03

      本文链接:https://www.haomeiwen.com/subject/mhvmdttx.html