| 123456789101112131415161718192021222324252627282930313233 |
- //
- // BGLiveBaseViewModel.h
- // BuguLive
- //
- // Created by xfg on 2017/8/14.
- // Copyright © 2017年 xfg. All rights reserved.
- //
- #import "BGBaseViewModel.h"
- @interface BGLiveBaseViewModel : BGBaseViewModel
- /**
- 开始直播,供子类重写
- */
- - (void)startLive;
- /**
- 暂停直播,供子类重写
- */
- - (void)pauseLive;
- /**
- 重新开始直播,供子类重写
- */
- - (void)resumeLive;
- /**
- 结束直播,供子类重写
- */
- - (void)endLive;
- @end
|