1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- //
- // JXCategoryImageView.m
- // JXCategoryView
- //
- // Created by jiaxin on 2018/8/20.
- // Copyright © 2018年 jiaxin. All rights reserved.
- //
- #import "JXCategoryImageView.h"
- #import "JXCategoryFactory.h"
- @implementation JXCategoryImageView
- - (void)dealloc
- {
- self.loadImageCallback = nil;
- }
- - (void)initializeData {
- [super initializeData];
- _imageSize = CGSizeMake(20, 20);
- _imageZoomEnabled = NO;
- _imageZoomScale = 1.2;
- _imageCornerRadius = 0;
- }
- - (Class)preferredCellClass {
- return [JXCategoryImageCell class];
- }
- - (void)refreshDataSource {
- NSMutableArray *tempArray = [NSMutableArray array];
- NSUInteger count = (self.imageNames.count > 0) ? self.imageNames.count : (self.imageURLs.count > 0 ? self.imageURLs.count : 0);
- for (int i = 0; i < count; i++) {
- JXCategoryImageCellModel *cellModel = [[JXCategoryImageCellModel alloc] init];
- [tempArray addObject:cellModel];
- }
- self.dataSource = tempArray;
- }
- - (void)refreshSelectedCellModel:(JXCategoryBaseCellModel *)selectedCellModel unselectedCellModel:(JXCategoryBaseCellModel *)unselectedCellModel {
- [super refreshSelectedCellModel:selectedCellModel unselectedCellModel:unselectedCellModel];
- JXCategoryImageCellModel *myUnselectedCellModel = (JXCategoryImageCellModel *)unselectedCellModel;
- myUnselectedCellModel.imageZoomScale = 1.0;
- JXCategoryImageCellModel *myselectedCellModel = (JXCategoryImageCellModel *)selectedCellModel;
- myselectedCellModel.imageZoomScale = self.imageZoomScale;
- }
- - (void)refreshCellModel:(JXCategoryBaseCellModel *)cellModel index:(NSInteger)index {
- [super refreshCellModel:cellModel index:index];
- JXCategoryImageCellModel *myCellModel = (JXCategoryImageCellModel *)cellModel;
- myCellModel.loadImageCallback = self.loadImageCallback;
- myCellModel.imageSize = self.imageSize;
- myCellModel.imageCornerRadius = self.imageCornerRadius;
- if (self.imageNames != nil) {
- myCellModel.imageName = self.imageNames[index];
- }else if (self.imageURLs != nil) {
- myCellModel.imageURL = self.imageURLs[index];
- }
- if (self.selectedImageNames != nil) {
- myCellModel.selectedImageName = self.selectedImageNames[index];
- }else if (self.selectedImageURLs != nil) {
- myCellModel.selectedImageURL = self.selectedImageURLs[index];
- }
- myCellModel.imageZoomEnabled = self.imageZoomEnabled;
- myCellModel.imageZoomScale = 1.0;
- if (index == self.selectedIndex) {
- myCellModel.imageZoomScale = self.imageZoomScale;
- }
- }
- - (void)refreshLeftCellModel:(JXCategoryBaseCellModel *)leftCellModel rightCellModel:(JXCategoryBaseCellModel *)rightCellModel ratio:(CGFloat)ratio {
- [super refreshLeftCellModel:leftCellModel rightCellModel:rightCellModel ratio:ratio];
- JXCategoryImageCellModel *leftModel = (JXCategoryImageCellModel *)leftCellModel;
- JXCategoryImageCellModel *rightModel = (JXCategoryImageCellModel *)rightCellModel;
- if (self.isImageZoomEnabled) {
- leftModel.imageZoomScale = [JXCategoryFactory interpolationFrom:self.imageZoomScale to:1.0 percent:ratio];
- rightModel.imageZoomScale = [JXCategoryFactory interpolationFrom:1.0 to:self.imageZoomScale percent:ratio];
- }
- }
- - (CGFloat)preferredCellWidthAtIndex:(NSInteger)index {
- if (self.cellWidth == JXCategoryViewAutomaticDimension) {
- return self.imageSize.width;
- }
- return self.cellWidth;
- }
- @end
|