YMCustomEffectView.h 459 B

123456789101112131415161718192021
  1. //
  2. // YMCustomEffectView.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/3/2.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface YMCustomEffectView : UIVisualEffectView
  11. @property (nonatomic, assign) CGFloat intensity;
  12. @property (nonatomic, strong) UIViewPropertyAnimator * animator;
  13. - (instancetype)initWithEffect:(UIVisualEffect *)effect intensity:(CGFloat)intensity;
  14. @end
  15. NS_ASSUME_NONNULL_END