iOS: add enable gallery

This commit is contained in:
王劲鹏 2023-06-13 20:36:55 +08:00 committed by osborn
parent 3393a474f9
commit 1b105d70e4
3 changed files with 29 additions and 23 deletions

View File

@ -25,5 +25,6 @@
@property(nonatomic, assign) CGFloat galleryItemWidth;
@property(nonatomic, assign) CGFloat galleryMinScale;
@property(nonatomic, assign) CGFloat galleryMinAlpha;
@property(nonatomic, assign) BOOL enableGallery;
@end

View File

@ -24,6 +24,7 @@
@implementation DoricSliderLayout
- (NSArray<UICollectionViewLayoutAttributes *> *)layoutAttributesForElementsInRect:(CGRect)rect {
if (self.enableGallery) {
NSArray *attributes = [super layoutAttributesForElementsInRect:rect];
CGRect visitRect = {self.collectionView.contentOffset, self.collectionView.bounds.size};
NSMutableArray *attributesCopy = [NSMutableArray array];
@ -50,6 +51,9 @@ @implementation DoricSliderLayout
attribute.transform3D = scaleTransform;
}
return attributesCopy;
} else {
return [super layoutAttributesForElementsInRect:rect];
}
}
- (BOOL)shouldInvalidateLayoutForBoundsChange:(CGRect)newBounds {

View File

@ -131,6 +131,7 @@ - (void)blendView:(UICollectionView *)view forPropName:(NSString *)name propValu
layout.galleryItemWidth = self.galleryItemWidth;
layout.galleryMinScale = self.galleryMinScale;
layout.galleryMinAlpha = self.galleryMinAlpha;
layout.enableGallery = YES;
}
} else if ([prop isKindOfClass:NSString.class]) {