如何在XCode项目中了解NSbundle的内容?
bcoz问题是,我在我的XCode项目的资源文件夹中放置了一个config.doc文件,我想读取该config.doc文件的内容,但是它说找不到config.doc文件。如何解决这个问题呢??
这就是我的代码的样子:
-(void)applicationDidFinishLaunching:(UIApplication*)application
{
if([NSBundle mainBundle]pathForResource;@"config" ofType:@"doc")!=nil)
{
NSLog(@"File Exists");
}
else
{
NSLog(@"File not found!!");
}
NSString *configContents = [[NSBundle mainBundle]pathForResource:@"config" ofType:@"doc"];
NSLog(@"Contents of config file : %@",configContents);
}
输出:
File not found!!
Contents of config file :(null)
如何解决这个问题?我不能犯错误的地方.. 请帮忙
谢谢
答案 0 :(得分:3)
您可以通过以下方式查看捆绑包的内容:
现在您可以检查文件中是否存在该文件。