SocietyHomePageVC.h 584 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // SocietyHomePageVC.h
  3. // BuguLive
  4. //
  5. // Created by 杨仁伟 on 2017/8/21.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import "BGBaseViewController.h"
  9. #import "SociatyListModel.h"
  10. @protocol SocietyHomePageVCDelegate <NSObject>
  11. /**
  12. 跳转到公会详情
  13. @param listModel model
  14. */
  15. - (void)pushSocietyDetail:(SociatyListModel *)listModel;
  16. @end
  17. @interface SocietyHomePageVC : BGBaseViewController
  18. @property (nonatomic, weak) id <SocietyHomePageVCDelegate> delegate;
  19. @property (nonatomic, assign) CGRect societyFrame;
  20. - (void)loadDataWithPage:(int)page;
  21. @end