BGLiveServiceViewModel.h 669 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // BGLiveServiceViewModel.h
  3. // BuguLive
  4. //
  5. // Created by xfg on 2017/8/14.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import "BGBaseViewModel.h"
  9. @interface BGLiveServiceViewModel : BGLiveBaseViewModel
  10. /**
  11. 主播开播时分享直播间
  12. @param shareModel 分享的实体
  13. @param shareType 分享类型
  14. @param vc vc
  15. @param block 分享后的回调
  16. */
  17. + (void)hostShareCurrentLive:(ShareModel *)shareModel shareType:(NSString *)shareType vc:(UIViewController *)vc block:(FWVoidBlock)block;
  18. /**
  19. 礼物信息的key
  20. @param msg 消息Model
  21. @return NSMutableDictionary
  22. */
  23. + (NSMutableDictionary *)getGiftMsgKey:(CustomMessageModel *)msg;
  24. @end