BGMainWebViewController.h 645 B

1234567891011121314151617181920212223
  1. //
  2. // BGMainWebViewController.h
  3. // BuguLive
  4. //
  5. // Created by xfg on 2017/6/3.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import "BGBaseWebViewController.h"
  9. #import "Mwxpay.h"
  10. typedef NS_ENUM(NSInteger, CurrentJump)
  11. {
  12. CurrentJumpError = -1, // 不做操作
  13. CurrentJumpLiveRoom = 0, // 直播间
  14. CurrentJumpMainUI = 1, // 原生的直播页面
  15. CurrentJumpPublishLive = 2, // 发布直播页
  16. };
  17. @interface BGMainWebViewController : BGBaseWebViewController <WKScriptMessageHandler, UIImagePickerControllerDelegate, UINavigationControllerDelegate>
  18. @end