2017-01-31 117 views
0

我有UICollecitonView裏面UITableViewCell,Everyting工作正常,我的tableview正在加載和我的collectionview太。但在我的要求中,我不想讓集合視圖滾動,而應該增加其高度。 當我增加tableview單元格的高度時,tableviewcell內的收集視圖不會增加。雖然我正在以編程方式增加身高限制collectionview。我試着撥layoutIfNeededsetNeedsUpdateConstraintcollectionView,和tableview單元和viewcontroller的觀點。但是collectionview的身高並沒有增加。CollectionView裏面的tableview單元格不增加高度collectionView

誰能告訴我如何實現它?

+0

你需要調用'reloadRowsAtIndexPaths'同時增加的tableview細胞的高度。 – Poles

+0

如果你分享一些代碼會更好。 – Poles

回答

0

你必須嘗試委託集合視圖

-(CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath 
{ 
    return CGSizeMake(80, 180); 
} 
相關問題