MOReportSomeOneView.h 517 B

123456789101112131415161718192021222324252627
  1. //
  2. // MOReportSomeOneView.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2024/1/16.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface MOReportSomeOneView : UIView
  10. @property (nonatomic, copy) NSString *userId;
  11. @property (nonatomic, assign) BOOL isAnimationTwo;//是否是二级动画(从下往上弹出)
  12. @property (nonatomic, copy) void (^dismissReportViewBlock)(void);
  13. + (instancetype)moReportSomeOneView;
  14. - (void)showReportSomeOneView;
  15. - (void)dismissReportSomeOneView;
  16. @end
  17. NS_ASSUME_NONNULL_END