Правильна відповідь ТАК , ви можете це зробити.
Я зіткнувся з цією проблемою кілька тижнів тому. Насправді простіше, ніж можна подумати. Помістіть ваші клітини в NIB (або дошки розкадрувань) та закріпіть їх, щоб автоматична компоновка виконала всю роботу
Враховуючи таку структуру:
TableView
TableViewCell
CollectionView
CollectionViewCell
CollectionViewCell
CollectionViewCell
[... змінна кількість комірок або різний розмір комірок]
Рішення полягає в тому, щоб сказати автоматичному компонуванню обчислити спочатку розміри collectionViewCell, потім збір перегляду contentSize та використовувати його як розмір вашої комірки. Це метод UIView, який "робить магію":
-(void)systemLayoutSizeFittingSize:(CGSize)targetSize
withHorizontalFittingPriority:(UILayoutPriority)horizontalFittingPriority
verticalFittingPriority:(UILayoutPriority)verticalFittingPriority
Ви повинні встановити тут розмір TableViewCell, який у вашому випадку є contentSize CollectionView.
CollectionViewCell
У CollectionViewCell вам потрібно повідомити клітинку розташувати щоразу, коли ви змінюєте модель (наприклад: ви встановлюєте UILabel з текстом, тоді клітина повинна бути розміщена знову).
- (void)bindWithModel:(id)model {
// Do whatever you may need to bind with your data and
// tell the collection view cell's contentView to resize
[self.contentView setNeedsLayout];
}
// Other stuff here...
TableViewCell
TableViewCell робить магію. Він має розетку для колекції collectionView, дозволяє автоматичний макет для комірок collectionView, використовуючи оцінний розмір UICollectionViewFlowLayout .
Тоді фокус полягає у встановленні розміру комірки tableView методом systemLayoutSizeFittingSize ... (ПРИМІТКА: iOS8 або новішої версії)
ПРИМІТКА. Я намагався використовувати метод висоти комірки делегата tableView. -(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
Але це вже занадто пізно, щоб система автоматичного компонування обчислила CollectionView contentSize, і іноді ви можете знайти неправильно змінені комірки.
@implementation TableCell
- (void)awakeFromNib {
[super awakeFromNib];
UICollectionViewFlowLayout *flow = (UICollectionViewFlowLayout *)self.collectionView.collectionViewLayout;
// Configure the collectionView
flow.minimumInteritemSpacing = ...;
// This enables the magic of auto layout.
// Setting estimatedItemSize different to CGSizeZero
// on flow Layout enables auto layout for collectionView cells.
// https://developer.apple.com/videos/play/wwdc2014-226/
flow.estimatedItemSize = CGSizeMake(1, 1);
// Disable the scroll on your collection view
// to avoid running into multiple scroll issues.
[self.collectionView setScrollEnabled:NO];
}
- (void)bindWithModel:(id)model {
// Do your stuff here to configure the tableViewCell
// Tell the cell to redraw its contentView
[self.contentView layoutIfNeeded];
}
// THIS IS THE MOST IMPORTANT METHOD
//
// This method tells the auto layout
// You cannot calculate the collectionView content size in any other place,
// because you run into race condition issues.
// NOTE: Works for iOS 8 or later
- (CGSize)systemLayoutSizeFittingSize:(CGSize)targetSize withHorizontalFittingPriority:(UILayoutPriority)horizontalFittingPriority verticalFittingPriority:(UILayoutPriority)verticalFittingPriority {
// With autolayout enabled on collection view's cells we need to force a collection view relayout with the shown size (width)
self.collectionView.frame = CGRectMake(0, 0, targetSize.width, MAXFLOAT);
[self.collectionView layoutIfNeeded];
// If the cell's size has to be exactly the content
// Size of the collection View, just return the
// collectionViewLayout's collectionViewContentSize.
return [self.collectionView.collectionViewLayout collectionViewContentSize];
}
// Other stuff here...
@end
TableViewController
Не забудьте ввімкнути систему автоматичного компонування для комірок tableView у вашому TableViewController :
- (void)viewDidLoad {
[super viewDidLoad];
// Enable automatic row auto layout calculations
self.tableView.rowHeight = UITableViewAutomaticDimension;
// Set the estimatedRowHeight to a non-0 value to enable auto layout.
self.tableView.estimatedRowHeight = 10;
}
КРЕДИТ: @rbarbera допоміг розібратися в цьому
UITableViewCell
відрізняється висота від його акустичного виду столу? Вам потрібна вертикальна прокрутка як на, такUICollectionView
і наUITableView