// // 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 // 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