ConsumptionViewController.h 875 B

12345678910111213141516171819202122232425
  1. //
  2. // ConsumptionViewController.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 ConsumptionViewController : BGBaseViewController
  12. @property (nonatomic, assign) MLMSegmentHeadStyle style;
  13. @property (nonatomic, assign) MLMSegmentLayoutStyle layout;
  14. @property (nonatomic,strong) SegmentView *listSegmentView;
  15. @property ( nonatomic,assign) BOOL isHiddenTabbar; //是否有tabbar控制view的高度
  16. @property (nonatomic,strong)ListDayViewController *listDayViewController; //日榜
  17. @property (nonatomic,strong)ListDayViewController *listMonthViewController; //月榜
  18. @property (nonatomic,strong)ListDayViewController *listTotalViewController; //总榜
  19. @end