FocusOnViewController.h 609 B

12345678910111213141516171819202122232425262728
  1. //
  2. // FocusOnViewController.h
  3. // BuguLive
  4. //
  5. // Created by GuoMs on 16/7/4.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. @protocol handleMainDelegate <NSObject>
  9. // 跳转到直播界面
  10. - (void)pushToLiveController:(LivingModel *)model modelArr:(NSArray *)modelArr isFirstJump:(BOOL)isFirstJump;
  11. // 跳转主页
  12. - (void)goToMainPage:(NSString *)userID;
  13. - (void)goToNewestView;
  14. @end
  15. @interface FocusOnViewController : BGBaseViewController
  16. @property (nonatomic, weak) id<handleMainDelegate>delegate;
  17. @property (nonatomic, assign) CGRect collectionViewFrame;
  18. - (void)requestNetWorking;
  19. @end