美文网首页
毛玻璃的效果

毛玻璃的效果

作者: Yuann | 来源:发表于2017-05-17 19:10 被阅读0次
  UIImageView  *imageView = [[UIImageView alloc]init];
    imageView.frame = self.view.bounds;
    imageView.image = [UIImage imageNamed:@"timg"];
    imageView.backgroundColor = [UIColor redColor];
    UIToolbar *toolBar = [[UIToolbar alloc]initWithFrame:self.view.bounds];
    
    [self.view addSubview:imageView];
    [self.view addSubview:toolBar];

效果如下:

Simulator Screen Shot 2017年5月17日 下午7.04.09.png

改变bar的style可以改变效果

toolBar.barStyle = UIBarStyleBlack;

效果如下:

Simulator Screen Shot 2017年5月17日 下午7.07.51.png

改变透明度,还可以改变效果

相关文章

网友评论

      本文标题:毛玻璃的效果

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