Different cell size in UICollectionview

后端 未结 4 2201
梦谈多话
梦谈多话 2020-12-18 18:10

In my iphone app,I am showing images on a collection view. I fetch the images from urls,with urls I get the image size also. eg:- let\'s say there are two kinds of images la

4条回答
  •  天命终不由人
    2020-12-18 19:00

    Use this UICollectionViewDelegateFlowLayout method

     - (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath;
    

提交回复
热议问题