毛玻璃的效果

2017-05-17  本文已影响0人  Yuann
  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

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

上一篇 下一篇

猜你喜欢

热点阅读