HMHotViewController.h 914 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // HMHotViewController.h
  3. // BuguLive
  4. //
  5. // Created by xfg on 2017/7/5.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. // 热门
  8. #import "BGBaseViewController.h"
  9. @protocol HMHotViewControllerDelegate <NSObject>
  10. @required
  11. - (void)goToMainPage:(NSString *)userID;
  12. @end
  13. @interface HMHotViewController : BGBaseViewController
  14. @property (nonatomic, weak) id<HMHotViewControllerDelegate> delegate;
  15. @property (nonatomic, strong) UITableView *tableView;
  16. @property (nonatomic, copy) NSString *cate_id; // 话题分类ID
  17. @property (nonatomic, copy) NSString *topicName; // 话题名称
  18. @property (nonatomic, copy) NSString *sexString; // 性别
  19. @property (nonatomic, copy) NSString *areaString; // 地区
  20. @property (nonatomic, assign) CGRect tableViewFrame;
  21. /**
  22. 加载热门页数据
  23. @param page 页码
  24. */
  25. - (void)loadDataFromNet:(int)page;
  26. @end