| 1234567891011121314151617181920212223242526 |
- //
- // MOCrazyShowView.h
- // MiMoLive
- //
- // Created by SuperC on 2024/1/15.
- //
- #define kMOCrazyShowViewWidth 270.0
- #define kMOCrazyShowViewHeigth 25.0;
- #define kMOCrazyShowViewLeftAndRightSpacing ((SCREENWIDTH - kMOCrazyShowViewWidth) / 2.0)
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MOCrazyShowView : UIView
- @property (nonatomic, strong) MORtmEntity *viewModel;
- @property (nonatomic, copy) void (^throughRoomBlock)(MORtmEntity *viewModel);
- - (void)toJudgeNeedAnimationScrollView;
- @end
- NS_ASSUME_NONNULL_END
|