我遇到的问题是:
1)某些预览缩略图不会显示,但会在点击时显示完整的图片。这是实现缩略图的主要代码:
return cell;`
所以'@“%d.JPG”,'根据需要接收文件。
2)另外,我已经尝试在属性面板中更改间距,使图片不对边缘,似乎没有效果,对此有什么想法?
非常感谢:)
答案 0 :(得分: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
。