如何为uicollectionview设置约束,以便它可以调整所有设备

时间:2017-07-28 08:08:12

标签: ios iphone uicollectionview constraints

enter image description here / Users / seedoo / Desktop / Simulator Screen Shot 2017年7月28日,1.33.59 PM.png / Users / seedoo / Desktop / Simulator Screen Shot 2017年7月28日,1.34.37 PM.png

iPhone 5s设备中的单元格之间的间隙比6s中的要小。请让我知道如何解决这个问题。谢谢。

1 个答案:

答案 0 :(得分:0)

试试这个:根据您的需要对所有方法进行更改

目标C

- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath{
    return  CGSizeMake(collectionView.frame.size.width/2 -5, 135); // 2 is indicates number of cell in sigle row
}

- (UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout insetForSectionAtIndex:(NSInteger)section{
    return UIEdgeInsetsMake(0, 0, 0, 0);
}

- (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout minimumInteritemSpacingForSectionAtIndex:(NSInteger)section{
    return 10.0f;
}

- (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout minimumLineSpacingForSectionAtIndex:(NSInteger)section
{
    return 10.0f;
}