XYLiveRoomShareView.h 440 B

123456789101112131415161718192021222324252627
  1. //
  2. // XYLiveRoomShareView.h
  3. // Starbuds
  4. //
  5. // Created by pajia on 2020/1/14.
  6. // Copyright © 2020 翟玉磊. All rights reserved.
  7. //
  8. #import "BaseView.h"
  9. #import "XYLiveRoomVCInfo.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface XYLiveRoomShareView : BaseView
  12. @property (nonatomic, strong) XYLiveRoomVCInfo *liveRoomVCInfo;
  13. //type 1直播间 2分享海报
  14. - (void)setup:(int )type;
  15. - (void)show;
  16. - (void)clear;
  17. @end
  18. NS_ASSUME_NONNULL_END