你好,歡迎來到IOS教程網

 Ios教程網 >> IOS編程開發 >> IOS開發綜合 >> iOS App升級安裝 - CoreData數據庫升級

iOS App升級安裝 - CoreData數據庫升級

編輯:IOS開發綜合

如果IOS App 使用到CoreData,並且在上一個版本上有數據庫更新(新增表、字段等操作),那在覆蓋安裝程序時就要進行CoreData數據庫的遷移,具體操作如下:

1.選中你的mydata.xcdatamodeld文件,選擇菜單editor->Add Model Version  比如取名:mydata2.xcdatamodel
2.設置當前版本
   選擇上級mydata.xcdatamodeld ,在inspector中的Versioned Core Data Model選擇Current模版為mydata2

3.修改新數據模型mydata2,在新的文件上添加字段及表

4.刪除原來的類文件,重新生成下類。

在appdelegate中

[html]
NSDictionary *optionsDictionary = [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithBool:YES], 
                                       NSMigratePersistentStoresAutomaticallyOption, [NSNumber numberWithBool:YES], 
                                       NSInferMappingModelAutomaticallyOption, nil]; 
     
if (![persistentStoreCoordinator addPersistentStoreWithType:NSSQLiteStoreType  
                                                  configuration:nil  
                                                            URL:storeUrl  
                                                        options:optionsDictionary  
                                                          error:&error]) {  www.2cto.com
 
          NSLog(@"failed to add persistent store with type to persistent store coordinator"); 
 

添加 *optionsDictionary,原來options:nil  改成options:optionsDictionary

5.重新編譯下程序。

 

  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved