ContributionViewController.h 844 B

12345678910111213141516171819202122232425
  1. //
  2. // ContributionViewController.h
  3. // BuguLive
  4. //
  5. // Created by yy on 16/10/18.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ListDayViewController.h"
  10. #import "MLMSegmentManager.h"
  11. @interface ContributionViewController : BGBaseViewController
  12. @property (nonatomic, assign) MLMSegmentHeadStyle style;
  13. @property (nonatomic, assign) MLMSegmentLayoutStyle layout;
  14. @property (nonatomic, strong) SegmentView *contriSegmentView;
  15. @property (assign, nonatomic) BOOL isHiddenTabbar;
  16. @property (nonatomic, strong) ListDayViewController *ContriDayViewController; //日榜
  17. @property (nonatomic, strong) ListDayViewController *ContriMonthViewController; //月榜
  18. @property (nonatomic, strong) ListDayViewController *ContriTotalViewController; //总榜
  19. @end