如何使用UIManagedDocument在IOS 6.0中将日志模式设置为WAL

时间:2013-12-05 05:11:52

标签: ios core-data uimanageddocument

我在我的核心数据中使用UIManagedDocument,我想在IOS 6.0中使用日志模式到WAL ... 怎么做 ?

1 个答案:

答案 0 :(得分:1)

创建UIManagedDocument时,日记帐模式是持久存储选项。你可以这样做:

UIManagedDocument *doc = [[UIManagedDocument alloc] initWithFileURL:docURL];
NSDictionary *options = @{ NSSQLitePragmasOption : @{ @"journal_mode": @"DELETE" } };
doc.persistentStoreOptions = options;

还包括您使用的其他任何选项 - 例如NSMigratePersistentStoresAutomaticallyOption