| 12345678910111213141516171819202122232425 |
- //
- // TYTabTitleViewCell.h
- // TYPagerControllerDemo
- //
- // Created by tany on 16/5/4.
- // Copyright © 2016年 tanyang. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @protocol TYTabPagerBarCellProtocol <NSObject>
- /**
- font ,textColor will use TYTabPagerBarLayout's textFont,textColor
- */
- @property (nonatomic, strong, readonly) UILabel *titleLabel;
- @end
- @interface TYTabPagerBarCell : UICollectionViewCell<TYTabPagerBarCellProtocol>
- @property (nonatomic, weak,readonly) UILabel *titleLabel;
- + (NSString *)cellIdentifier;
- @end
- NS_ASSUME_NONNULL_END
|