| 123456789101112131415161718192021222324252627282930 |
- //
- // MOChatNotificationView.h
- // MiMoLive
- //
- // Created by SuperC on 2025/6/4.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @protocol MOChatNotificationViewDelegate <NSObject>
- - (void)didTapNotificationWithChatId:(V2TIMMessage *)msg;
- @end
- @interface MOChatNotificationView : UIView
- @property (nonatomic, weak) id<MOChatNotificationViewDelegate> delegate;
- @property (nonatomic, strong) V2TIMMessage *model;
- - (instancetype)initWithModel:(V2TIMMessage *)model;
- - (void)showWithAnimation;
- - (void)dismissWithAnimation;
- @end
- NS_ASSUME_NONNULL_END
|