我想显示一个带有以下代码的UIImage:

UIImageView *image = [[UIImageView alloc ]initWithFrame:CGRectMake(0, 0, 500, 500)];
image.image = [UIImage imageNamed:@"1.png"];
[self.view addSubview:image];

这是我的Xcode配置屏幕快照,只需将gifs文件夹拖放到带有copy if necessary的Xcode中

ios - 如何在Objective-c的Xcode中使UIImage工作-LMLPHP

最佳答案

尝试这个。

image.image = [UIImage imageNamed:@"gifs/1.png"];

如何添加图像文件夹
ios - 如何在Objective-c的Xcode中使UIImage工作-LMLPHP

09-05 23:07