修改UI
This commit is contained in:
164
Pods/JXCategoryView/Sources/Title/JXCategoryTitleView.m
generated
Normal file
164
Pods/JXCategoryView/Sources/Title/JXCategoryTitleView.m
generated
Normal file
@@ -0,0 +1,164 @@
|
||||
//
|
||||
// JXCategoryView.m
|
||||
// UI系列测试
|
||||
//
|
||||
// Created by jiaxin on 2018/3/15.
|
||||
// Copyright © 2018年 jiaxin. All rights reserved.
|
||||
//
|
||||
|
||||
#import "JXCategoryTitleView.h"
|
||||
#import "JXCategoryFactory.h"
|
||||
|
||||
@implementation JXCategoryTitleView
|
||||
|
||||
- (void)initializeData {
|
||||
[super initializeData];
|
||||
|
||||
_titleNumberOfLines = 1;
|
||||
_titleLabelZoomEnabled = NO;
|
||||
_titleLabelZoomScale = 1.2;
|
||||
_titleColor = [UIColor blackColor];
|
||||
_titleSelectedColor = [UIColor redColor];
|
||||
_titleFont = [UIFont systemFontOfSize:15];
|
||||
_titleColorGradientEnabled = NO;
|
||||
_titleLabelMaskEnabled = NO;
|
||||
_titleLabelZoomScrollGradientEnabled = YES;
|
||||
_titleLabelStrokeWidthEnabled = NO;
|
||||
_titleLabelSelectedStrokeWidth = -3;
|
||||
_titleLabelVerticalOffset = 0;
|
||||
_titleLabelAnchorPointStyle = JXCategoryTitleLabelAnchorPointStyleCenter;
|
||||
}
|
||||
|
||||
- (UIFont *)titleSelectedFont {
|
||||
if (_titleSelectedFont) {
|
||||
return _titleSelectedFont;
|
||||
}
|
||||
return self.titleFont;
|
||||
}
|
||||
|
||||
#pragma mark - Override
|
||||
|
||||
- (Class)preferredCellClass {
|
||||
return [JXCategoryTitleCell class];
|
||||
}
|
||||
|
||||
- (void)refreshDataSource {
|
||||
NSMutableArray *tempArray = [NSMutableArray arrayWithCapacity:self.titles.count];
|
||||
for (int i = 0; i < self.titles.count; i++) {
|
||||
JXCategoryTitleCellModel *cellModel = [[JXCategoryTitleCellModel alloc] init];
|
||||
[tempArray addObject:cellModel];
|
||||
}
|
||||
self.dataSource = [NSArray arrayWithArray:tempArray];
|
||||
}
|
||||
|
||||
- (void)refreshSelectedCellModel:(JXCategoryBaseCellModel *)selectedCellModel unselectedCellModel:(JXCategoryBaseCellModel *)unselectedCellModel {
|
||||
[super refreshSelectedCellModel:selectedCellModel unselectedCellModel:unselectedCellModel];
|
||||
|
||||
JXCategoryTitleCellModel *myUnselectedCellModel = (JXCategoryTitleCellModel *)unselectedCellModel;
|
||||
JXCategoryTitleCellModel *myselectedCellModel = (JXCategoryTitleCellModel *)selectedCellModel;
|
||||
if (self.isSelectedAnimationEnabled && (selectedCellModel.selectedType == JXCategoryCellSelectedTypeClick || selectedCellModel.selectedType == JXCategoryCellSelectedTypeCode)) {
|
||||
//开启了动画过渡,且cell在屏幕内,current的属性值会在cell里面进行动画插值更新
|
||||
//1、当unselectedCell在屏幕外的时候,还是需要在这里更新值
|
||||
//2、当selectedCell在屏幕外的时候,还是需要在这里更新值(比如调用selectItemAtIndex方法选中的时候)
|
||||
BOOL isUnselectedCellVisible = NO;
|
||||
BOOL isSelectedCellVisible = NO;
|
||||
NSArray *indexPaths = [self.collectionView indexPathsForVisibleItems];
|
||||
for (NSIndexPath *indexPath in indexPaths) {
|
||||
if (indexPath.item == myUnselectedCellModel.index) {
|
||||
isUnselectedCellVisible = YES;
|
||||
continue;
|
||||
} else if (indexPath.item == myselectedCellModel.index) {
|
||||
isSelectedCellVisible = YES;
|
||||
continue;
|
||||
}
|
||||
}
|
||||
if (!isUnselectedCellVisible) {
|
||||
//但是当unselectedCell在屏幕外时,不会在cell里面通过动画插值更新,在这里直接更新
|
||||
myUnselectedCellModel.titleCurrentColor = myUnselectedCellModel.titleNormalColor;
|
||||
myUnselectedCellModel.titleLabelCurrentZoomScale = myUnselectedCellModel.titleLabelNormalZoomScale;
|
||||
myUnselectedCellModel.titleLabelCurrentStrokeWidth = myUnselectedCellModel.titleLabelNormalStrokeWidth;
|
||||
}
|
||||
if (!isSelectedCellVisible) {
|
||||
//但是当selectedCell在屏幕外时,不会在cell里面通过动画插值更新,在这里直接更新
|
||||
myselectedCellModel.titleCurrentColor = myselectedCellModel.titleSelectedColor;
|
||||
myselectedCellModel.titleLabelCurrentZoomScale = myselectedCellModel.titleLabelSelectedZoomScale;
|
||||
myselectedCellModel.titleLabelCurrentStrokeWidth = myselectedCellModel.titleLabelSelectedStrokeWidth;
|
||||
}
|
||||
} else {
|
||||
//没有开启动画,可以直接更新属性
|
||||
myselectedCellModel.titleCurrentColor = myselectedCellModel.titleSelectedColor;
|
||||
myselectedCellModel.titleLabelCurrentZoomScale = myselectedCellModel.titleLabelSelectedZoomScale;
|
||||
myselectedCellModel.titleLabelCurrentStrokeWidth = myselectedCellModel.titleLabelSelectedStrokeWidth;
|
||||
|
||||
myUnselectedCellModel.titleCurrentColor = myUnselectedCellModel.titleNormalColor;
|
||||
myUnselectedCellModel.titleLabelCurrentZoomScale = myUnselectedCellModel.titleLabelNormalZoomScale;
|
||||
myUnselectedCellModel.titleLabelCurrentStrokeWidth = myUnselectedCellModel.titleLabelNormalStrokeWidth;
|
||||
}
|
||||
}
|
||||
|
||||
- (void)refreshLeftCellModel:(JXCategoryBaseCellModel *)leftCellModel rightCellModel:(JXCategoryBaseCellModel *)rightCellModel ratio:(CGFloat)ratio {
|
||||
[super refreshLeftCellModel:leftCellModel rightCellModel:rightCellModel ratio:ratio];
|
||||
|
||||
JXCategoryTitleCellModel *leftModel = (JXCategoryTitleCellModel *)leftCellModel;
|
||||
JXCategoryTitleCellModel *rightModel = (JXCategoryTitleCellModel *)rightCellModel;
|
||||
|
||||
if (self.isTitleLabelZoomEnabled && self.isTitleLabelZoomScrollGradientEnabled) {
|
||||
leftModel.titleLabelCurrentZoomScale = [JXCategoryFactory interpolationFrom:self.titleLabelZoomScale to:1.0 percent:ratio];
|
||||
rightModel.titleLabelCurrentZoomScale = [JXCategoryFactory interpolationFrom:1.0 to:self.titleLabelZoomScale percent:ratio];
|
||||
}
|
||||
|
||||
if (self.isTitleLabelStrokeWidthEnabled) {
|
||||
leftModel.titleLabelCurrentStrokeWidth = [JXCategoryFactory interpolationFrom:leftModel.titleLabelSelectedStrokeWidth to:leftModel.titleLabelNormalStrokeWidth percent:ratio];
|
||||
rightModel.titleLabelCurrentStrokeWidth = [JXCategoryFactory interpolationFrom:rightModel.titleLabelNormalStrokeWidth to:rightModel.titleLabelSelectedStrokeWidth percent:ratio];
|
||||
}
|
||||
|
||||
if (self.isTitleColorGradientEnabled) {
|
||||
leftModel.titleCurrentColor = [JXCategoryFactory interpolationColorFrom:self.titleSelectedColor to:self.titleColor percent:ratio];
|
||||
rightModel.titleCurrentColor = [JXCategoryFactory interpolationColorFrom:self.titleColor to:self.titleSelectedColor percent:ratio];
|
||||
}
|
||||
}
|
||||
|
||||
- (CGFloat)preferredCellWidthAtIndex:(NSInteger)index {
|
||||
if (self.cellWidth == JXCategoryViewAutomaticDimension) {
|
||||
if (self.titleDataSource && [self.titleDataSource respondsToSelector:@selector(categoryTitleView:widthForTitle:)]) {
|
||||
return [self.titleDataSource categoryTitleView:self widthForTitle:self.titles[index]];
|
||||
} else {
|
||||
return ceilf([self.titles[index] boundingRectWithSize:CGSizeMake(MAXFLOAT, self.bounds.size.height) options:NSStringDrawingUsesLineFragmentOrigin|NSStringDrawingUsesFontLeading attributes:@{NSFontAttributeName : self.titleFont} context:nil].size.width);
|
||||
}
|
||||
} else {
|
||||
return self.cellWidth;
|
||||
}
|
||||
}
|
||||
|
||||
- (void)refreshCellModel:(JXCategoryBaseCellModel *)cellModel index:(NSInteger)index {
|
||||
[super refreshCellModel:cellModel index:index];
|
||||
|
||||
JXCategoryTitleCellModel *model = (JXCategoryTitleCellModel *)cellModel;
|
||||
model.title = self.titles[index];
|
||||
model.titleNumberOfLines = self.titleNumberOfLines;
|
||||
model.titleFont = self.titleFont;
|
||||
model.titleSelectedFont = self.titleSelectedFont;
|
||||
model.titleNormalColor = self.titleColor;
|
||||
model.titleSelectedColor = self.titleSelectedColor;
|
||||
model.titleLabelMaskEnabled = self.isTitleLabelMaskEnabled;
|
||||
model.titleLabelZoomEnabled = self.isTitleLabelZoomEnabled;
|
||||
model.titleLabelNormalZoomScale = 1;
|
||||
model.titleLabelZoomSelectedVerticalOffset = self.titleLabelZoomSelectedVerticalOffset;
|
||||
model.titleLabelSelectedZoomScale = self.titleLabelZoomScale;
|
||||
model.titleLabelStrokeWidthEnabled = self.isTitleLabelStrokeWidthEnabled;
|
||||
model.titleLabelNormalStrokeWidth = 0;
|
||||
model.titleLabelSelectedStrokeWidth = self.titleLabelSelectedStrokeWidth;
|
||||
model.titleLabelVerticalOffset = self.titleLabelVerticalOffset;
|
||||
model.titleLabelAnchorPointStyle = self.titleLabelAnchorPointStyle;
|
||||
if (index == self.selectedIndex) {
|
||||
model.titleCurrentColor = model.titleSelectedColor;
|
||||
model.titleLabelCurrentZoomScale = model.titleLabelSelectedZoomScale;
|
||||
model.titleLabelCurrentStrokeWidth= model.titleLabelSelectedStrokeWidth;
|
||||
}else {
|
||||
model.titleCurrentColor = model.titleNormalColor;
|
||||
model.titleLabelCurrentZoomScale = model.titleLabelNormalZoomScale;
|
||||
model.titleLabelCurrentStrokeWidth = model.titleLabelNormalStrokeWidth;
|
||||
}
|
||||
}
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user