我的iPhone应用程序上有一个遗留的sqlite文件,但在设备上测试时,找不到sqlite文件。有没有办法在iPhone设备上部署sqlite文件?
非常感谢。
答案 0 :(得分:0)
该文件需要添加到您的Xcode项目中。确保您正在加载正确的文件,并且没有拼写错误。
编辑:根据评论进行更新:
NSString *path = [[NSBundle mainBundle] pathForResource:@"sqlitefile" ofType:@"db"];
if ([[NSFileManager defaultManager] fileExistsAtPath:path]) {
// Don't create new sqlite file
}
else {
// Create a new sqlite file
}