iOS 8.0 毛玻璃效果UIVisualEffect

来源:互联网 发布:小黄鸡peeper软件下载 编辑:程序博客网 时间:2024/05/16 02:45

 随着iOS8.0和OS X 10.0的发布,大量的毛玻璃效果随处可见.

   以前我们实现毛玻璃效果,更多是通过CGImage来实现.现在,XCode6中自带了实现这一效果的API.API如下:

[objc] view plaincopy
  1. typedef NS_ENUM(NSInteger, UIBlurEffectStyle) {  
  2.     UIBlurEffectStyleExtraLight,  
  3.     UIBlurEffectStyleLight,  
  4.     UIBlurEffectStyleDark  
  5. } NS_ENUM_AVAILABLE_IOS(8_0);  
  6.   
  7. NS_CLASS_AVAILABLE_IOS(8_0@interface UIVisualEffect : NSObject <NSCopying, NSSecureCoding> @end  
  8.   
  9. /* UIBlurEffect will provide a blur that appears to have been applied to the content layered behind the UIVisualEffectView. Views added to the contentView of a blur visual effect are not blurred themselves. */  
  10. NS_CLASS_AVAILABLE_IOS(8_0@interface UIBlurEffect : UIVisualEffect  
  11. + (UIBlurEffect *)effectWithStyle:(UIBlurEffectStyle)style;  
  12. @end  
  13.   
  14. /* UIVibrancyEffect amplifies and adjusts the color of content layered behind the view, allowing content placed inside the contentView to become more vivid. It is intended to be placed over, or as a subview of, a UIVisualEffectView that has been configured with a UIBlurEffect. This effect only affects content added to the contentView. Because the vibrancy effect is color dependent, subviews added to the contentView need to be tintColorDidChange aware and must be prepared to update themselves accordingly. UIImageView will need its image to have a rendering mode of UIImageRenderingModeAlwaysTemplate to receive the proper effect. 
  15.  */  
  16. NS_CLASS_AVAILABLE_IOS(8_0@interface UIVibrancyEffect : UIVisualEffect  
  17. + (UIVibrancyEffect *)effectForBlurEffect:(UIBlurEffect *)blurEffect;  
  18. @end  
  19.   
  20. NS_CLASS_AVAILABLE_IOS(8_0@interface UIVisualEffectView : UIView <NSSecureCoding>  
  21. @property (nonatomicretainreadonlyUIView *contentView; // Do not add subviews directly to UIVisualEffectView, use this view instead.  
  22. @property (nonatomiccopyreadonlyUIVisualEffect *effect;  
  23. - (instancetype)initWithEffect:(UIVisualEffect *)effect NS_DESIGNATED_INITIALIZER;  
  24. @end  

      @测试代码:

[objc] view plaincopy在CODE上查看代码片派生到我的代码片
  1. // 图片  
  2. UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(10100300400)];  
  3. [imageView setImage:[UIImage imageNamed:@"IMG_0015.JPG"]];  
  4. [self.view addSubview:imageView];  
  5.   
  6. // blur效果  
  7. self.visualEfView = [[UIVisualEffectView alloc] initWithEffect:[UIBlurEffect effectWithStyle:UIBlurEffectStyleLight]];  
  8. _visualEfView.frame = CGRectMake(00300400);  
  9. _visualEfView.alpha = 1.0;  
  10. [imageView addSubview:_visualEfView];  

0 0