BGLiveBaseViewModel.h 462 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // BGLiveBaseViewModel.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 BGLiveBaseViewModel : BGBaseViewModel
  10. /**
  11. 开始直播,供子类重写
  12. */
  13. - (void)startLive;
  14. /**
  15. 暂停直播,供子类重写
  16. */
  17. - (void)pauseLive;
  18. /**
  19. 重新开始直播,供子类重写
  20. */
  21. - (void)resumeLive;
  22. /**
  23. 结束直播,供子类重写
  24. */
  25. - (void)endLive;
  26. @end