我正在尝试查找名为“file1.jpg”的文件的完整路径
我已经验证它在应用程序包中,但是当我运行此代码时:
NSBundle* myBundle = [NSBundle mainBundle];
NSString* path = [myBundle pathForResource:@"file1" ofType:@"jpg"];
'path' 没有我期望的路径/文件。
这是直接来自Apple 文档的代码。
我究竟做错了什么?
我正在尝试查找名为“file1.jpg”的文件的完整路径
我已经验证它在应用程序包中,但是当我运行此代码时:
NSBundle* myBundle = [NSBundle mainBundle];
NSString* path = [myBundle pathForResource:@"file1" ofType:@"jpg"];
'path' 没有我期望的路径/文件。
这是直接来自Apple 文档的代码。
我究竟做错了什么?