iOS: Fix layout in flowlayout or list

This commit is contained in:
pengfei.zhou 2022-09-08 18:34:27 +08:00 committed by osborn
parent 1dc167a43c
commit 0df882f28c
3 changed files with 29 additions and 30 deletions

View File

@ -45,8 +45,8 @@ @interface DoricFlowLayout : UICollectionViewLayout
@property(nonatomic, readonly) CGFloat rowSpace; @property(nonatomic, readonly) CGFloat rowSpace;
@property(nonatomic, strong) NSMutableDictionary <NSNumber *, NSNumber *> *columnHeightInfo; @property(nonatomic, strong) NSMutableDictionary <NSNumber *, NSNumber *> *columnHeightInfo;
@property(nonatomic, weak) id <DoricFlowLayoutDelegate> delegate; @property(nonatomic, weak) id <DoricFlowLayoutDelegate> delegate;
@property(nonatomic, copy) NSArray<UICollectionViewLayoutAttributes*> *layoutAttributes; @property(nonatomic, copy) NSArray<UICollectionViewLayoutAttributes *> *layoutAttributes;
@property(nonatomic, copy) NSArray<NSValue*> *unionRects; @property(nonatomic, copy) NSArray<NSValue *> *unionRects;
@property(nonatomic, strong) NSArray *swapDisabled; @property(nonatomic, strong) NSArray *swapDisabled;
@end @end
@ -90,7 +90,7 @@ - (void)prepareLayout {
for (int i = 0; i < count; i++) { for (int i = 0; i < count; i++) {
minYOfColumn = @(0); minYOfColumn = @(0);
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:i inSection:0] ; NSIndexPath *indexPath = [NSIndexPath indexPathForRow:i inSection:0];
UICollectionViewLayoutAttributes *attrs = [UICollectionViewLayoutAttributes layoutAttributesForCellWithIndexPath:indexPath]; UICollectionViewLayoutAttributes *attrs = [UICollectionViewLayoutAttributes layoutAttributesForCellWithIndexPath:indexPath];
@ -134,7 +134,7 @@ - (void)prepareLayout {
NSMutableArray *mutableCopy = [NSMutableArray array]; NSMutableArray *mutableCopy = [NSMutableArray array];
long idx = 0; long idx = 0;
NSInteger itemCounts = count; NSInteger itemCounts = count;
while(idx < itemCounts){ while (idx < itemCounts) {
CGRect rect1 = self.layoutAttributes[idx].frame; CGRect rect1 = self.layoutAttributes[idx].frame;
idx = MIN(idx + count, itemCounts) - 1; idx = MIN(idx + count, itemCounts) - 1;
CGRect rect2 = self.layoutAttributes[idx].frame; CGRect rect2 = self.layoutAttributes[idx].frame;
@ -147,7 +147,7 @@ - (void)prepareLayout {
- (NSArray *)layoutAttributesForElementsInRect:(CGRect)rect { - (NSArray *)layoutAttributesForElementsInRect:(CGRect)rect {
NSInteger begin = 0; NSInteger begin = 0;
NSInteger end = self.unionRects.count; NSInteger end = self.unionRects.count;
NSMutableArray<UICollectionViewLayoutAttributes*> *attrs = [NSMutableArray array]; NSMutableArray<UICollectionViewLayoutAttributes *> *attrs = [NSMutableArray array];
for (int i = 0; i < end; i++) { for (int i = 0; i < end; i++) {
if (CGRectIntersectsRect(rect, [self.unionRects[i] CGRectValue])) { if (CGRectIntersectsRect(rect, [self.unionRects[i] CGRectValue])) {
@ -486,12 +486,9 @@ - (__kindof UICollectionViewCell *)collectionView:(UICollectionView *)collection
if (props[@"fullSpan"]) { if (props[@"fullSpan"]) {
fullSpan = [props[@"fullSpan"] boolValue]; fullSpan = [props[@"fullSpan"] boolValue];
} }
if (fullSpan) { CGFloat width = fullSpan ? collectionView.width : (collectionView.width - (self.columnCount - 1) * self.columnSpace) / self.columnCount;
node.view.width = collectionView.width; CGFloat height = node.view.doricLayout.heightSpec == DoricLayoutFit ? CGFLOAT_MAX : collectionView.height;
} else { [node.view.doricLayout apply:CGSizeMake(width, height)];
node.view.width = (collectionView.width - (self.columnCount - 1) * self.columnSpace) / self.columnCount;
}
[node.view.doricLayout apply];
[node requestLayout]; [node requestLayout];
[self callItem:position size:node.view.frame.size]; [self callItem:position size:node.view.frame.size];
return cell; return cell;

View File

@ -266,7 +266,8 @@ - (__kindof UICollectionViewCell *)collectionView:(UICollectionView *)collection
DoricHorizontalListItemNode *node = cell.doricHorizontalListItemNode; DoricHorizontalListItemNode *node = cell.doricHorizontalListItemNode;
node.viewId = model[@"id"]; node.viewId = model[@"id"];
[node blend:props]; [node blend:props];
[node.view.doricLayout apply:CGSizeMake(collectionView.width, collectionView.height)]; CGFloat width = node.view.doricLayout.widthSpec == DoricLayoutFit ? CGFLOAT_MAX : collectionView.width;
[node.view.doricLayout apply:CGSizeMake(width, collectionView.height)];
[node requestLayout]; [node requestLayout];
[self callItem:position width:node.view.width]; [self callItem:position width:node.view.width];
return cell; return cell;

View File

@ -40,7 +40,7 @@ @interface DoricTableView : UITableView
@implementation DoricTableView @implementation DoricTableView
- (CGSize)sizeThatFits:(CGSize)size { - (CGSize)sizeThatFits:(CGSize)size {
CGSize result = [super sizeThatFits:size]; CGSize result = [super sizeThatFits:size];
if(self.doricLayout.widthSpec == DoricLayoutFit && self.contentSize.width>0){ if (self.doricLayout.widthSpec == DoricLayoutFit && self.contentSize.width > 0) {
return CGSizeMake(self.contentSize.width, result.height); return CGSizeMake(self.contentSize.width, result.height);
} }
return result; return result;
@ -268,7 +268,8 @@ - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(N
DoricListItemNode *node = cell.doricListItemNode; DoricListItemNode *node = cell.doricListItemNode;
node.viewId = model[@"id"]; node.viewId = model[@"id"];
[node blend:props]; [node blend:props];
[node.view.doricLayout apply:CGSizeMake(tableView.width, tableView.height)]; CGFloat height = node.view.doricLayout.heightSpec == DoricLayoutFit ? CGFLOAT_MAX : tableView.height;
[node.view.doricLayout apply:CGSizeMake(tableView.width, height)];
[node requestLayout]; [node requestLayout];
[self callItem:position height:node.view.height]; [self callItem:position height:node.view.height];
return cell; return cell;