美文网首页
iOS 自带音乐 miniplay 模糊效果

iOS 自带音乐 miniplay 模糊效果

作者: 码农淏 | 来源:发表于2016-12-31 19:30 被阅读18次

效果图:


WX20161231-193104@2x.png
UIVisualEffectView *effectView = [[UIVisualEffectView alloc] initWithEffect:[UIBlurEffect effectWithStyle:UIBlurEffectStyleLight]];
    effectView.frame = self.frame;
    [self addSubview:effectView];
// 改为 lightGrayColor 效果更佳
    [self setBackgroundColor:[[UIColor whiteColor] colorWithAlphaComponent:0.2f]];

相关文章

网友评论

      本文标题:iOS 自带音乐 miniplay 模糊效果

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