我有一个 iPhone 应用程序,我在其中将images
目录(组)添加到Resources
(组)中。我想访问images
. 我需要该图像的路径,因此我创建了如下代码。
NSString *imagePath = [[NSBundle mainBundle] pathForResource:@"myImage1" ofType:@"png" inDirectory:@"images"];
NSLog(@"%@", imagePath);
结果 :
(null)
我也试过这段代码
NSString *imagePath = [[NSBundle mainBundle] pathForResource:@"myImage1" ofType:@"png"];
但是这段代码给了我(null)
结果。
myImage1
的路径是Resources/images/myImage1.png
我不知道是什么问题。请提出一些修复建议。