0

我已经为我的应用程序创建了一个包含数据的 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

任何想法为什么?

4

2 回答 2

1

处理路径的最佳方法是让 API 处理有关将内容“附加”到路径字符串的细节。

NSString *path = [[NSBundle mainBundle] pathForResource:@"database" 
                                                 ofType:@"db"]; 
于 2012-07-12T07:40:32.917 回答
1

NSString *path = [[NSBundle mainBundle] pathForResource:@"database" ofType:@".SQLite"];

于 2012-07-13T12:50:09.690 回答