美文网首页
[[NSBundle mainBundle] pathForRe

[[NSBundle mainBundle] pathForRe

作者: 焉逢12 | 来源:发表于2017-10-10 16:48 被阅读0次

    iOS开发在一次使用数据库文件时

    NSString *filePath = [[NSBundle mainBundle] pathForResource:
    @"city" ofType:@"sqlite"
    ];
    

    运行后filePath是空的,但是已经把这个文件加到Xcode中了,上网查了下发现由于当时是直接拖进去的,没有添加到资源文件路径,需要采用add file to 方式添加文件。但是这样有时也会因为Xcode的原因添加不到资源文件中。在项目设置中Build Phases > Copy Bundle Resources 中可以查看已经添加进去的资源文件,如果里面没有,那就需要在这里手动添加了。

    相关文章

      网友评论

          本文标题:[[NSBundle mainBundle] pathForRe

          本文链接:https://www.haomeiwen.com/subject/wbfbyxtx.html