如何从iPhone上的依赖项包中检索资源?

时间:2011-09-29 20:15:35

标签: iphone objective-c nsbundle

我已将依赖项目添加到我的项目中。依赖项有一个包含我需要的资源的包。如何获得这些资源的路径?

我尝试了以下内容并获得NO。有什么建议吗?

 NSFileManager *fileManager = [[NSFileManager alloc] init];

 NSString *bundlePath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"Dendency.bundle"];

 if ([fileManager fileExistsAtPath:bundlePath]) 
 {
     NSLog(@"YES");
 }
 else
 {
     NSLog(@"NO");
 }

0 个答案:

没有答案