iOS巅峰之背景添加毛玻璃

来源:互联网 发布:神武2手游天宫加点数据 编辑:程序博客网 时间:2024/05/01 02:01

self.blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
self.diaryStartEditingBlurView = [[UIVisualEffectView alloc] initWithEffect:self.blurEffect];
self.diaryStartEditingBlurView.frame = CGRectMake(0, 0, kScreenWidth, kScreenHeight);
[self addSubview:self.diaryStartEditingBlurView];
0 0