VoiceHomeListViewController.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. #import "NewestViewController.h"
  10. @class LivingModel;
  11. @class cuserModel;
  12. //@protocol PushToLiveControllerDelegate <NSObject>
  13. //
  14. //// 跳转到直播界面
  15. //- (void)pushToLiveController:(LivingModel *)model modelArr:(NSArray *)modelArr isFirstJump:(BOOL)isFirstJump;
  16. //// 跳转到热门页
  17. //- (void)pushToNextControllerWithModel:(cuserModel *)model;
  18. //
  19. //@end
  20. @interface VoiceHomeListViewController : BGBaseViewController
  21. @property (nonatomic, weak) id<PushToLiveControllerDelegate>delegate;
  22. @property (nonatomic, assign) CGRect collectionViewFrame;
  23. @property (nonatomic, copy) NSString *cate_id; // 话题分类ID
  24. @property (nonatomic, copy) NSString *areaString;
  25. @property (nonatomic, copy) NSString *sexString;
  26. @property (nonatomic, copy) NSString *topicName;
  27. /**
  28. 无内容视图
  29. */
  30. @property (nonatomic, strong) BGNoContentView *noContentViews;
  31. @property (nonatomic, strong) NSString *types;
  32. - (void)loadDataWithPage:(int)page;
  33. - (void)loadDataFromNet:(int)page;
  34. @end