SLBlurView.h 328 B

12345678910111213141516171819
  1. //
  2. // SLBlurView.h
  3. // DarkMode
  4. //
  5. // Created by wsl on 2019/9/19.
  6. // Copyright © 2019 wsl. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. /// 高斯模糊视图
  11. @interface SLBlurView : UIView
  12. //高斯模糊
  13. @property (nonatomic, strong) UIVisualEffectView *blurView;
  14. @end
  15. NS_ASSUME_NONNULL_END