Prawidłowa odpowiedź brzmi TAK , MOŻESZ to zrobić.
Z tym problemem natknąłem się kilka tygodni temu. W rzeczywistości jest to łatwiejsze niż myślisz. Umieść swoje komórki w NIB (lub scenorysach) i przypnij je, aby automatyczny układ wykonał całą pracę
Biorąc pod uwagę następującą strukturę:
TableView
TableViewCell
CollectionView
CollectionViewCell
CollectionViewCell
CollectionViewCell
[... zmienna liczba komórek lub różne rozmiary komórek]
Rozwiązaniem jest poinformowanie układu automatycznego, aby najpierw obliczył rozmiary collectionViewCell, a następnie contentSize widoku kolekcji i użyć go jako rozmiaru komórki. Oto metoda UIView , która „robi magię”:
-(void)systemLayoutSizeFittingSize:(CGSize)targetSize
withHorizontalFittingPriority:(UILayoutPriority)horizontalFittingPriority
verticalFittingPriority:(UILayoutPriority)verticalFittingPriority
Musisz ustawić tutaj rozmiar TableViewCell, który w twoim przypadku jest ContentSize CollectionView.
CollectionViewCell
W CollectionViewCell musisz powiedzieć komórce, aby układała się za każdym razem, gdy zmieniasz model (np .: ustawiasz UILabel z tekstem, a następnie komórka musi być ponownie ułożona).
- (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 czyni magię. To ma wylot do swojego CollectionView umożliwia układ automatycznego dla komórek CollectionView korzystających estimatedItemSize z UICollectionViewFlowLayout .
Następnie sztuczka polega na ustawieniu rozmiaru komórki tableView w metodzie systemLayoutSizeFittingSize ... (UWAGA: iOS8 lub nowszy)
UWAGA: Próbowałem użyć metody wysokości komórki delegata w tableView., -(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
Ale jest już za późno, aby system automatycznego układu obliczył CollectionView contentSize i czasami możesz znaleźć niewłaściwe komórki o zmienionym rozmiarze.
@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
Pamiętaj, aby włączyć system automatycznego układu dla komórek tableView w swoim 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;
}
KREDYT : @rbarbera pomógł rozwiązać ten problem
UITableViewCell
różni się od rzeczywistego widoku tabeli? Czy potrzebujesz przewijania w pionie zarówno na, jakUICollectionView
i naUITableView