MOVoiceInvitedAlertView.h 565 B

12345678910111213141516171819202122232425262728
  1. //
  2. // MOVoiceInvitedAlertView.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2024/8/8.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface MOVoiceInvitedAlertView : UIView
  10. @property (nonatomic, copy) NSString *roomId;
  11. @property (nonatomic, strong) MOUserProfile *anchor;
  12. @property (nonatomic, strong) MORtmEntity *entity;
  13. @property (nonatomic, copy) void (^roomStatusChangeBlock)(MORoomStatus *roomStatus);
  14. + (instancetype)moVoiceInvitedAlertView;
  15. - (void)showVoiceInvitedAlertView;
  16. - (void)dismissVoiceInvitedAlertView;
  17. @end
  18. NS_ASSUME_NONNULL_END