MOChatNotificationView.h 564 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // MOChatNotificationView.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2025/6/4.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @protocol MOChatNotificationViewDelegate <NSObject>
  10. - (void)didTapNotificationWithChatId:(V2TIMMessage *)msg;
  11. @end
  12. @interface MOChatNotificationView : UIView
  13. @property (nonatomic, weak) id<MOChatNotificationViewDelegate> delegate;
  14. @property (nonatomic, strong) V2TIMMessage *model;
  15. - (instancetype)initWithModel:(V2TIMMessage *)model;
  16. - (void)showWithAnimation;
  17. - (void)dismissWithAnimation;
  18. @end
  19. NS_ASSUME_NONNULL_END