I had some problems with integrating an UIWebView in a UiCollectionView.
The main problem appeared because the delegate of UiCollectionView
: -
(CGSize)collectionView:(UICollectionView *)collectionView layout: (UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
is called before knowing the size of the UIWebview
- (void)webViewDidFinishLoad:(UIWebView *)webView
Here i have 2 different texts: short_description and long Description that needs to be kept in an UIWebView in a UICollectionViewCell. When you tap on the cell the Long description Will appear. Tap again short description will appear and so on.