我正在尝试使用coredata和swift在其中插入简单的数据,下面是我的代码,但是当我运行它并打开我的sqlite文件时,我看不到其中的任何数据吗?

import UIKit
import CoreData

class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.
        let documentsPath = NSSearchPathForDirectoriesInDomains(.DocumentDirectory, .UserDomainMask, true)[0]

        print(documentsPath)

        self.saveName("John")

    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }

    func saveName(name: String) {
        //1
        let appDelegate =
            UIApplication.sharedApplication().delegate as! AppDelegate

        let managedContext = appDelegate.managedObjectContext

        //2
        let entity =  NSEntityDescription.entityForName("Persons",
                                                        inManagedObjectContext:managedContext)

        let person = NSManagedObject(entity: entity!,
                                     insertIntoManagedObjectContext: managedContext)

        //3
        person.setValue(name, forKey: "name")

        //4
        do {
            try managedContext.save()
            //5
            //people.append(person)
        } catch let error as NSError  {
            print("Could not save \(error), \(error.userInfo)")
        }
    }

}

最佳答案

试试更多类似的东西。您拥有的代码将用于更新或添加。

func saveName(name: String) {
    let appDel: AppDelegate = UIApplication.sharedApplication().delegate as! AppDelegate
    let context: NSManagedObjectContext = appDel.managedObjectContext
    let newItem = NSEntityDescription.insertNewObjectForEntityForName("Persons", inManagedObjectContext: context) as! Persons
    newItem.person = name
    do {
        try context.save()
    } catch let error as NSError {

        print("Unresolved error \(error), \(error.userInfo)")
        abort()
    }

}

关于ios - 使用Swift插入后,CoreData文件未显示任何数据,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39005275/

10-10 08:19
查看更多