| 12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // BGLiveBaseViewModel.m
- // BuguLive
- //
- // Created by xfg on 2017/8/14.
- // Copyright © 2017年 xfg. All rights reserved.
- //
- #import "BGLiveBaseViewModel.h"
- @implementation BGLiveBaseViewModel
- #pragma mark 开始直播
- - (void)startLive
- {
-
- }
- #pragma mark 暂停直播
- - (void)pauseLive
- {
-
- }
- #pragma mark 重新开始直播
- - (void)resumeLive
- {
-
- }
- #pragma mark 结束直播
- - (void)endLive
- {
-
- }
- @end
|