Playground 的出現(xiàn)無疑是大大的提高了開發(fā)效率,可以節(jié)省大量的編譯時(shí)間。
創(chuàng)新互聯(lián)建站主要從事成都網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站、網(wǎng)頁設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)霍邱,10年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):13518219792這里介紹在 Playground 中使用 CoreData 的小技巧。
我們新建一個(gè)工程 iOS 項(xiàng)目工程。
點(diǎn)擊 File -> New -> File , 在工程中新建文件 Data Model 文件
在 model 中添加一個(gè) Entitle,如下圖
編譯工程后,在 Product 選擇生成的 .app 文件,找到該目錄,如下圖
查看包中的文件,如圖
可以看到一個(gè) Mode.momd 文件, 如圖
在工程中新建一個(gè) playground 文件
把剛才的 Model.momd 文件拷貝到 playground 的 Resource 目錄下
在 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é)果如圖
參考鏈接
作者: HuminiOS - 極光( JPush 為極光團(tuán)隊(duì)賬號,歡迎關(guān)注)
原文: http://www.jianshu.com/p/818c063cf686
知乎專欄:極光日報(bào)
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。