溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Playground 你不知道的小技巧, CoreData 的使用

發(fā)布時(shí)間:2020-06-21 09:38:03 來(lái)源:網(wǎng)絡(luò) 閱讀:387 作者:ajkarter 欄目:移動(dòng)開(kāi)發(fā)

Playground 的出現(xiàn)無(wú)疑是大大的提高了開(kāi)發(fā)效率,可以節(jié)省大量的編譯時(shí)間。

這里介紹在 Playground 中使用 CoreData 的小技巧。

  1. 我們新建一個(gè)工程 iOS 項(xiàng)目工程。

  2. 點(diǎn)擊 File -> New -> File , 在工程中新建文件 Data Model 文件 Playground 你不知道的小技巧, CoreData 的使用

  3. 在 model 中添加一個(gè) Entitle,如下圖 Playground 你不知道的小技巧, CoreData 的使用

  4. 編譯工程后,在 Product 選擇生成的 .app 文件,找到該目錄,如下圖 Playground 你不知道的小技巧, CoreData 的使用

  5. 查看包中的文件,如圖 Playground 你不知道的小技巧, CoreData 的使用

  6. 可以看到一個(gè) Mode.momd 文件, 如圖 Playground 你不知道的小技巧, CoreData 的使用

  7. 在工程中新建一個(gè) playground 文件 Playground 你不知道的小技巧, CoreData 的使用

  8. 把剛才的 Model.momd 文件拷貝到 playground 的 Resource 目錄下 Playground 你不知道的小技巧, CoreData 的使用

  9. 在 playground 中就可以直接使用這個(gè) Model 資源了

//: Playground - noun: a place where people can playimport UIKitimport CoreData// Core Data Stack Setup for In-Memory Storepublic func getModelContext(name:String) -> NSManagedObjectContext {  
  // Replace "Model" with the name of your model
  let modelUrl = NSBundle.mainBundle().URLForResource(name, withExtension: "momd")  guard let model = NSManagedObjectModel.init(contentsOfURL: modelUrl!) else { fatalError("not this file") }  
  let psc = NSPersistentStoreCoordinator(managedObjectModel: model)  try! psc.addPersistentStoreWithType(NSInMemoryStoreType, configuration: nil, URL: nil, options: nil)  
  let context = NSManagedObjectContext(concurrencyType: .MainQueueConcurrencyType)
  context.persistentStoreCoordinator = psc  
  return context
}let context = getModelContext("Model")// Insert a new Entitylet ent = NSEntityDescription.insertNewObjectForEntityForName("Entity", inManagedObjectContext: context)
ent.setValue("fasf", forKey: "name")try! context.save()// Perform a fetch requestlet fr = NSFetchRequest(entityName: "Entity")let result = try! context.executeFetchRequest(fr)print(result)

結(jié)果如圖 Playground 你不知道的小技巧, CoreData 的使用

參考鏈接

作者: HuminiOS - 極光( JPush 為極光團(tuán)隊(duì)賬號(hào),歡迎關(guān)注)

原文: http://www.jianshu.com/p/818c063cf686

知乎專欄:極光日?qǐng)?bào)


向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI