毛玻璃

作者: xing_xing | 来源:发表于2016-07-18 17:41 被阅读19次

// 创建imageview
UIImageView *imageview = [[UIImageView alloc]initWithFrame:self.view.bounds];
imageview.image = [UIImage imageNamed:@"home2"];
[self.view addSubview:imageview];

//添加毛玻璃效果
UIToolbar *toobar = [[UIToolbar alloc]init];
toobar.frame = imageview.bounds;
toobar.barStyle = UIBarStyleBlack;
[imageview addSubview:toobar];

相关文章

网友评论

      本文标题:毛玻璃

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