美文网首页iOS技术栈
毛玻璃磨砂特效

毛玻璃磨砂特效

作者: 冼强輝 | 来源:发表于2018-12-27 15:52 被阅读0次

    iOS 8之后新添加了UIBlurEffect 类和 UIVisualEffectView 类来实现毛玻璃磨砂特效。

    UIBlurEffect *blur = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
    UIVisualEffectView *effectview = [[UIVisualEffectView alloc] initWithEffect:blur];
    effectview.frame = self.view.bounds;
    [self.view addSubview:effectview];
    

    毛玻璃特效类型:

    UIBlurEffectStyleExtraLight

    UIBlurEffectStyleLight

    UIBlurEffectStyleDark

    相关文章

      网友评论

        本文标题:毛玻璃磨砂特效

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