码迷,mamicode.com
首页 > 其他好文 > 详细

collectionView itemW宽度计算不对

时间:2017-09-17 15:02:57      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:宽度   return   elf   inter   ctf   nbsp   atl   4.0   mini   

([[UIScreen mainScreen] bounds].size.width - 28) / 4.00 没加括号

 

collectioView不能正常撑开

用flowLayout 不要用 代理方法!!!!

NMFourCollectFloatLayout *flow = [[NMFourCollectFloatLayout alloc]init];
    flow.itemSize = CGSizeMake((kScreen_Width - 30) / 4.00, 105);
    flow.minimumInteritemSpacing = 0;

下面的不行

//- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath {
//    NSInteger count = self.dataSource.count > 0 ? self.dataSource.count : 1;
//    
//    CGFloat width = ([[UIScreen mainScreen] bounds].size.width - 50) / 4.00; // 25 30 60可以
//    DZLog(@"width-%f,--%d,--%f",width,count, collectionView.width); // width-97.5 换行 97.250000  96.500000 96
//    return CGSizeMake(width, 105);
//}

collectionView itemW宽度计算不对

标签:宽度   return   elf   inter   ctf   nbsp   atl   4.0   mini   

原文地址:http://www.cnblogs.com/tufei7/p/7535331.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!