美文网首页
单元格数量少,cell被居中

单元格数量少,cell被居中

作者: 寒雨晚风 | 来源:发表于2019-07-30 16:08 被阅读0次

- (UIEdgeInsets)collectionView:(UICollectionView*)collectionView layout:(UICollectionViewLayout*)collectionViewLayout insetForSectionAtIndex:(NSInteger)section {

    NSIntegerresult = 0;

    result = [self.contentData[section][kHDClassifyLeftTableViewModelDataKeyChildNode] count];

    if(result>1) {

      return  UIEdgeInsetsMake(0,0,0,0);

    }

    else

    {

       returnUIEdgeInsetsMake(0,0,0,(ScreenW-100)/2);

    }

}

相关文章

网友评论

      本文标题:单元格数量少,cell被居中

      本文链接:https://www.haomeiwen.com/subject/iapnrctx.html