TYTabPagerBarCell.h 581 B

12345678910111213141516171819202122232425
  1. //
  2. // TYTabTitleViewCell.h
  3. // TYPagerControllerDemo
  4. //
  5. // Created by tany on 16/5/4.
  6. // Copyright © 2016年 tanyang. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol TYTabPagerBarCellProtocol <NSObject>
  11. /**
  12. font ,textColor will use TYTabPagerBarLayout's textFont,textColor
  13. */
  14. @property (nonatomic, strong, readonly) UILabel *titleLabel;
  15. @end
  16. @interface TYTabPagerBarCell : UICollectionViewCell<TYTabPagerBarCellProtocol>
  17. @property (nonatomic, weak,readonly) UILabel *titleLabel;
  18. + (NSString *)cellIdentifier;
  19. @end
  20. NS_ASSUME_NONNULL_END