我创建了一个包含我的应用程序数据的sqlite数据库,并将其拖入Xcode中的支持文件组。
当我尝试使用以下方式访问它时:
NSString *bundlePath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"database.db"];
它不读取文件。但是,如果我输入完整的文件路径:
NSString *bundlePath = @"Users/xxxx/Apps/App/database.db";
该应用可以正常使用。
我打印出来自:
的文件路径 NSString *bundlePath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"database.db"];
它是:
/Users/xxx/Library/Application Support/iPhone Simulator/5.1/Applications/EE614EFA-BAF9-478E-xxxx-xxxx/App.app/database.db
任何想法为什么?
答案 0 :(得分:1)
处理路径的最佳方法是让API处理有关将“附加”内容添加到路径字符串的详细信息。
NSString *path = [[NSBundle mainBundle] pathForResource:@"database"
ofType:@"db"];
答案 1 :(得分:1)
NSString * path = [[NSBundle mainBundle] pathForResource:@“database” ofType:@ “SQLite的”];