NewestViewController.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // NewestViewController.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 16/7/4.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import "BGNoContentView.h"
  9. @class LivingModel;
  10. @class cuserModel;
  11. @protocol PushToLiveControllerDelegate <NSObject>
  12. // 跳转到直播界面
  13. - (void)pushToLiveController:(LivingModel *)model modelArr:(NSArray *)modelArr isFirstJump:(BOOL)isFirstJump;
  14. // 跳转到热门页
  15. - (void)pushToNextControllerWithModel:(cuserModel *)model;
  16. @end
  17. @interface NewestViewController : BGBaseViewController
  18. @property (nonatomic, weak) id<PushToLiveControllerDelegate>delegate;
  19. @property (nonatomic, assign) CGRect collectionViewFrame;
  20. @property (nonatomic, copy) NSString *cate_id; // 话题分类ID
  21. @property (nonatomic, copy) NSString *areaString;
  22. @property (nonatomic, copy) NSString *sexString;
  23. @property (nonatomic, copy) NSString *topicName;
  24. /**
  25. 无内容视图
  26. */
  27. @property (nonatomic, strong) BGNoContentView *noContentViews;
  28. @property (nonatomic, strong) NSString *types;
  29. - (void)loadDataWithPage:(int)page;
  30. - (void)loadDataFromNet:(int)page;
  31. @end