NSArray 填充了 UIImages
NSArray filled with UIImages
我正在尝试将图像添加到我的 UICollectionView
这样填:
NSArray *imagesArray = [[NSArray alloc] initWithObjects:[UIImage imageNamed:@"star.png"], [UIImage imageNamed:@"ball.png"], nil];
每张图片有3种分辨率@1x.png@2x.png和@3x.png
但 imagesArray
似乎包含所有设备的 @1x 图片。
我该如何解决?提前致谢:)
问题是 Xcode 缓存了 @1x 图像。我清理了构建文件夹并重新安装了我的应用程序。
我正在尝试将图像添加到我的 UICollectionView
这样填:
NSArray *imagesArray = [[NSArray alloc] initWithObjects:[UIImage imageNamed:@"star.png"], [UIImage imageNamed:@"ball.png"], nil];
每张图片有3种分辨率@1x.png@2x.png和@3x.png
但 imagesArray
似乎包含所有设备的 @1x 图片。
我该如何解决?提前致谢:)
问题是 Xcode 缓存了 @1x 图像。我清理了构建文件夹并重新安装了我的应用程序。