0

我遇到的问题是:

1) 某些预览缩略图不显示,但在单击时会显示完整图片,就像单击时一样。这是实现缩略图的主要代码:

` NSString *imageToLoad = [NSString stringWithFormat:@"%d.JPG", indexPath.row]; cell.image.image = [UIImage imageNamed:imageToLoad];

return cell;`

因此,'@"%d.JPG",' 根据需要接收文件。

2)另外,我已经尝试在属性面板中更改间距,所以图片不靠边,似乎没有效果,对此有什么想法吗?

非常感谢 :)

4

1 回答 1

0

要回答您的第一个问题,您可以使用占位符图像来显示。

要回答您的第二个问题,此UICollectionViewFlowLayoutDelegate方法将对您有所帮助..

- (CGFloat)collectionView:(PSUICollectionView *)collectionView layout:(PSUICollectionViewLayout*)collectionViewLayout minimumInteritemSpacingForSectionAtIndex:(NSInteger)section
 {
return 10; // This is the minimum inter item spacing, can be more
}

如果您需要更多空间来安排您的单元格,请再调整一次edgeInsets

于 2013-08-12T11:08:32.857 回答