UIView+Effect.h 361 B

123456789101112131415161718192021
  1. //
  2. // UIView+Effect.h
  3. // CommonLibrary
  4. //
  5. // Created by AlexiChen on 15/12/24.
  6. // Copyright © 2015年 AlexiChen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface UIView (Effect)
  10. - (void)blurWithColor:(UIColor *)color;
  11. // 底层自动blur image
  12. - (void)blurWithImage:(UIImage *)image;
  13. // iOS8这后调才管
  14. - (void)blurSelfBackground;
  15. @end