| 123456789101112131415161718192021222324252627282930313233343536 |
- //
- // TYTabButtonPagerControlle.h
- // TYPagerControllerDemo
- //
- // Created by tany on 16/5/11.
- // Copyright © 2016年 tanyang. All rights reserved.
- //
- #import "TYTabPagerController.h"
- #import "TYTabTitleViewCell.h"
- // register cell conforms to TYTabTitleViewCellProtocol
- @interface TYTabButtonPagerController : TYTabPagerController<TYTabPagerControllerDelegate,TYPagerControllerDataSource>
- // be carefull!!! the barStyle set style will reset progress propertys, set it (behind [super viewdidload]) or (in init) and set cell property that you want
- // pagerBar color
- @property(nonatomic,strong)NSArray *infoArray;
- @property (nonatomic, strong) UIColor *pagerBarColor;
- @property (nonatomic, strong) UIColor *collectionViewBarColor;
- // progress view
- @property (nonatomic, assign) CGFloat progressRadius;
- @property (nonatomic, strong) UIColor *progressColor;
- // text color
- @property (nonatomic, strong) UIColor *normalTextColor;
- @property (nonatomic, strong) UIColor *selectedTextColor;
- @property(nonatomic,strong)UIColor *normalbackcolor;
- @property(nonatomic,strong)UIColor *selectedbackcolor;
- @end
|