我有一個UICollectionViewCell,它的動態大小與自動佈局。如何強制動態調整UICollectionViewCell的寬度
- (CGSize) collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath{
// Force cell layout and take auto layout height
[self configureCell:_sizingCell forIndexPath:indexPath];
return [_sizingCell.contentView systemLayoutSizeFittingSize:UILayoutFittingCompressedSize];
}
這適用於調整大小,但寬度佔用太多的空間。我需要根據屏幕大小對此寬度強制約束,並讓自動佈局找出距離此處的高度。我如何正確地做到這一點?我需要iOS7和iOS8的工作。
你好,你設法解決這個問題嗎? – 2015-01-01 18:00:50