BGLiveBaseViewModel.m 429 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // BGLiveBaseViewModel.m
  3. // BuguLive
  4. //
  5. // Created by xfg on 2017/8/14.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import "BGLiveBaseViewModel.h"
  9. @implementation BGLiveBaseViewModel
  10. #pragma mark 开始直播
  11. - (void)startLive
  12. {
  13. }
  14. #pragma mark 暂停直播
  15. - (void)pauseLive
  16. {
  17. }
  18. #pragma mark 重新开始直播
  19. - (void)resumeLive
  20. {
  21. }
  22. #pragma mark 结束直播
  23. - (void)endLive
  24. {
  25. }
  26. @end