TYTabButtonPagerController.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // TYTabButtonPagerControlle.h
  3. // TYPagerControllerDemo
  4. //
  5. // Created by tany on 16/5/11.
  6. // Copyright © 2016年 tanyang. All rights reserved.
  7. //
  8. #import "TYTabPagerController.h"
  9. #import "TYTabTitleViewCell.h"
  10. // register cell conforms to TYTabTitleViewCellProtocol
  11. @interface TYTabButtonPagerController : TYTabPagerController<TYTabPagerControllerDelegate,TYPagerControllerDataSource>
  12. // 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
  13. // pagerBar color
  14. @property(nonatomic,strong)NSArray *infoArray;
  15. @property (nonatomic, strong) UIColor *pagerBarColor;
  16. @property (nonatomic, strong) UIColor *collectionViewBarColor;
  17. // progress view
  18. @property (nonatomic, assign) CGFloat progressRadius;
  19. @property (nonatomic, strong) UIColor *progressColor;
  20. // text color
  21. @property (nonatomic, strong) UIColor *normalTextColor;
  22. @property (nonatomic, strong) UIColor *selectedTextColor;
  23. @property(nonatomic,strong)UIColor *normalbackcolor;
  24. @property(nonatomic,strong)UIColor *selectedbackcolor;
  25. @end