| 12345678910111213141516171819202122232425262728 |
- //
- // MOVoiceInvitedAlertView.h
- // MiMoLive
- //
- // Created by SuperC on 2024/8/8.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MOVoiceInvitedAlertView : UIView
- @property (nonatomic, copy) NSString *roomId;
- @property (nonatomic, strong) MOUserProfile *anchor;
- @property (nonatomic, strong) MORtmEntity *entity;
- @property (nonatomic, copy) void (^roomStatusChangeBlock)(MORoomStatus *roomStatus);
- + (instancetype)moVoiceInvitedAlertView;
- - (void)showVoiceInvitedAlertView;
- - (void)dismissVoiceInvitedAlertView;
- @end
- NS_ASSUME_NONNULL_END
|