VoiceHomeListViewController.h 1.2 KB

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