我已将依赖项目添加到我的项目中。依赖项有一个包含我需要的资源的包。如何获得这些资源的路径?
我尝试了以下内容并获得NO
。有什么建议吗?
NSFileManager *fileManager = [[NSFileManager alloc] init];
NSString *bundlePath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"Dendency.bundle"];
if ([fileManager fileExistsAtPath:bundlePath])
{
NSLog(@"YES");
}
else
{
NSLog(@"NO");
}