LiveCenterAPIManager.h 497 B

12345678910111213141516171819202122232425
  1. //
  2. // LiveCenterAPIManager.h
  3. // BuguLive
  4. //
  5. // Created by 岳克奎 on 16/12/13.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. typedef void(^LiveAddBlock)(NSDictionary *responseJson, BOOL finished, NSError *error);
  10. @interface LiveCenterAPIManager : NSObject
  11. // 单例模式
  12. BogoSingletonH(Instance);
  13. /**
  14. * @brief:主播开直播
  15. *
  16. * @use:
  17. */
  18. - (void)liveCenterAPIOfShowHostLiveOfDic:(NSMutableDictionary *)dic block:(LiveAddBlock)block;
  19. @end