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改变透明度,还可以改变效果
网友评论