MOGiftNumView.h 352 B

123456789101112131415161718192021222324
  1. //
  2. // MOGiftNumView.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2024/8/22.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface MOGiftNumView : UIView
  10. @property (nonatomic, strong) MOGiftInfo *giftInfo;
  11. @property (nonatomic, assign) NSInteger theNum;
  12. + (instancetype)moGiftNumView;
  13. - (void)toShowNewNumber;
  14. @end
  15. NS_ASSUME_NONNULL_END