I have an NSCollectionView, which items are dynamically sized.
When the item is returned by [collectionView makeItemWithIdentifier:reuseIdentifier forIndexPath:indexPath] its view has the desired size
BUT
the subviews are not yet sized accordingly, they still have the xib sizes.
The problem is that while setting the properties of the item, I need to know the final size of all subviews (because I am optimizing some images).
How can I force the subviews to be resized just after getting the item from makeItemWithIdentifier:forIndexPath: ?
Or maybe, how can I know their future size ?
Or any other solution ?