| 123456789101112131415161718192021222324252627 |
- //
- // MOReportSomeOneView.h
- // MiMoLive
- //
- // Created by SuperC on 2024/1/16.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MOReportSomeOneView : UIView
- @property (nonatomic, copy) NSString *userId;
- @property (nonatomic, assign) BOOL isAnimationTwo;//是否是二级动画(从下往上弹出)
- @property (nonatomic, copy) void (^dismissReportViewBlock)(void);
- + (instancetype)moReportSomeOneView;
- - (void)showReportSomeOneView;
- - (void)dismissReportSomeOneView;
- @end
- NS_ASSUME_NONNULL_END
|