右の答えはYES、あなたはCANこれを行います。
数週間前にこの問題に遭遇しました。思ったより簡単です。セルをNIB(またはストーリーボード)に入れて固定し、自動レイアウトですべての作業を実行します
次のような構造があるとします。
TableView
TableViewCell
CollectionView
CollectionViewCell
CollectionViewCell
CollectionViewCell
[...可変セル数または異なるセルサイズ]
解決策は、最初にcollectionViewCellのサイズを計算し、次にコレクションビューのcontentSizeを計算し、それをセルのサイズとして使用するように自動レイアウトに指示することです。これは「魔法をかける」UIViewメソッドです。
-(void)systemLayoutSizeFittingSize:(CGSize)targetSize
withHorizontalFittingPriority:(UILayoutPriority)horizontalFittingPriority
verticalFittingPriority:(UILayoutPriority)verticalFittingPriority
ここでは、TableViewCellのサイズを設定する必要があります。この場合、CollectionViewのcontentSizeです。
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へのアウトレットがあり、UICollectionViewFlowLayoutの見積もられたアイテムサイズを使用して、collectionViewセルの自動レイアウトを有効にします。
次に、秘訣は、tableLayoutSizeFittingSize ...メソッドでtableViewセルのサイズを設定することです。(注:iOS8以降)
注:私はのtableViewのデリゲートセルの高さメソッドを使用しようとした-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
.but 手遅れ 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
TableViewControllerでtableViewセルの自動レイアウトシステムを必ず有効にしてください。
- (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