JXCategoryTitleCell.h 859 B

12345678910111213141516171819202122232425
  1. //
  2. // JXCategoryTitleCell.h
  3. // UI系列测试
  4. //
  5. // Created by jiaxin on 2018/3/15.
  6. // Copyright © 2018年 jiaxin. All rights reserved.
  7. //
  8. #import "JXCategoryIndicatorCell.h"
  9. #import "JXCategoryViewDefines.h"
  10. @class JXCategoryTitleCellModel;
  11. @interface JXCategoryTitleCell : JXCategoryIndicatorCell
  12. @property (nonatomic, strong) UILabel *titleLabel;
  13. @property (nonatomic, strong) UILabel *maskTitleLabel;
  14. - (JXCategoryCellSelectedAnimationBlock)preferredTitleZoomAnimationBlock:(JXCategoryTitleCellModel *)cellModel baseScale:(CGFloat)baseScale;
  15. - (JXCategoryCellSelectedAnimationBlock)preferredTitleStrokeWidthAnimationBlock:(JXCategoryTitleCellModel *)cellModel attributedString:(NSMutableAttributedString *)attributedString;
  16. - (JXCategoryCellSelectedAnimationBlock)preferredTitleColorAnimationBlock:(JXCategoryTitleCellModel *)cellModel;
  17. @end