ListDayViewController.h 786 B

1234567891011121314151617181920212223242526
  1. //
  2. // ListDayViewController.h
  3. // BuguLive
  4. //
  5. // Created by ycp on 16/10/14.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol ListDayViewControllerDelegate <NSObject>
  10. - (void)pushToHomePage:(UserModel *)model;
  11. -(void)getRankListNum:(NSString *)rankNum;
  12. @end
  13. @interface ListDayViewController : BGBaseViewController
  14. @property (assign, nonatomic) BOOL isHiddenTabbar;
  15. @property ( nonatomic,weak) id<ListDayViewControllerDelegate> delegate;
  16. @property ( nonatomic,assign) int type; //功德榜:日榜(1),月榜(2),总榜(3) 贡献榜: 日榜(4),月榜(5),总榜(6)
  17. @property ( nonatomic,copy) NSString *hostLiveId;//主播id
  18. @end