您的位置:首页 > 移动开发 > IOS开发

iOS8自带模糊效果

2014-09-19 15:12 55 查看
typedef NS_ENUM(NSInteger, UIBlurEffectStyle) {
    UIBlurEffectStyleExtraLight,
    UIBlurEffectStyleLight,
    UIBlurEffectStyleDark
} NS_ENUM_AVAILABLE_IOS(8_0);

UIBlurEffect *blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleDark];
UIVisualEffectView *blurEffectView = [[UIVisualEffectView alloc] initWithEffect:blurEffect];
blurEffectView.frame = self.imageView.bounds;
[self.imageView insertSubview:blurEffectView atIndex:0];
 


未处理效果



UIBlurEffectStyleLight



UIBlurEffectStyleExtraLight



UIBlurEffectStyleDark

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  iOS 模糊