| 12345678910111213141516171819202122232425 |
- //
- // ConsumptionViewController.h
- // BuguLive
- //
- // Created by yy on 16/10/18.
- // Copyright © 2016年 xfg. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ListDayViewController.h"
- #import "MLMSegmentManager.h"
- @interface ConsumptionViewController : BGBaseViewController
- @property (nonatomic, assign) MLMSegmentHeadStyle style;
- @property (nonatomic, assign) MLMSegmentLayoutStyle layout;
- @property (nonatomic,strong) SegmentView *listSegmentView;
- @property ( nonatomic,assign) BOOL isHiddenTabbar; //是否有tabbar控制view的高度
- @property (nonatomic,strong)ListDayViewController *listDayViewController; //日榜
- @property (nonatomic,strong)ListDayViewController *listMonthViewController; //月榜
- @property (nonatomic,strong)ListDayViewController *listTotalViewController; //总榜
- @end
|