search

Home  >  Q&A  >  body text

objective-c - 设置UICollectionViewFlowLayout的minimumLineSpacing不起作用怎么回事?

UICollectionViewFlowLayout *layout = [[UICollectionViewFlowLayout alloc] init];

layout.minimumLineSpacing =10.0f;
 //2.初始化collectionView
_homeCollectionView = [[UICollectionView alloc] initWithFrame:CGRectMake(0, 0, Screen_width , Screen_height - 117) collectionViewLayout:layout];


代码是这样,不知道是什么原因引起minimumLineSpacing属性失效的

巴扎黑巴扎黑2757 days ago1013

reply all(1)I'll reply

  • 伊谢尔伦

    伊谢尔伦2017-05-02 09:40:10

    If the delegate object does not implement the
    collectionView:layout:minimumLineSpacingForSectionAtIndex: method, the
    flow layout uses the value in this property to set the spacing between
    lines in a section.

    For a vertically scrolling grid, this value represents the minimum
    spacing between successive rows. For a horizontally scrolling grid,
    this value represents the minimum spacing between successive columns.
    This spacing is not applied to the space between the header and the
    first line or between the last line and the footer.

    The default value of this property is 10.0.

    原因有很多,是否时实现了设置minimumLineSpacing的delegate,还和collectionView的滑动方向有关。

    reply
    0
  • Cancelreply