我在我的核心数据中使用UIManagedDocument,我想在IOS 6.0中使用日志模式到WAL ... 怎么做 ?
答案 0 :(得分:1)
创建UIManagedDocument
时,日记帐模式是持久存储选项。你可以这样做:
UIManagedDocument *doc = [[UIManagedDocument alloc] initWithFileURL:docURL];
NSDictionary *options = @{ NSSQLitePragmasOption : @{ @"journal_mode": @"DELETE" } };
doc.persistentStoreOptions = options;
还包括您使用的其他任何选项 - 例如NSMigratePersistentStoresAutomaticallyOption
。