Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Instantiate a NSManagedObject without saving it

I got a class like :

@objc(User)
class User: NSManagedObject {

    @NSManaged var id: String

    //MARK: - Initialize
    convenience init(id: String,  context: NSManagedObjectContext?) {

        // Create the NSEntityDescription
        let entity = NSEntityDescription.entityForName("User", inManagedObjectContext: context!)


        // Super init the top init
        self.init(entity: entity!, insertIntoManagedObjectContext: context)


        // Init class variables
        self.id = id

    }
}

I create a new User in a ViewController :

managedObjectContext = (UIApplication.sharedApplication().delegate as! AppDelegate).managedObjectContext!

var aUser = User(id: "500T", context: managedObjectContext)

I have another class "Group" where Group have many Users. To save user I do something like

aGroup!.users = NSSet(array: users!)
!managedObjectContext.save

I don't want to save all users. How can I instantiate a user without saving it ?

like image 381
Ludovic Avatar asked Jun 21 '26 22:06

Ludovic


1 Answers

I found my answer and add a needSave boolean to the user init. Maybe it's not the best answer but it's working.

@objc(User)
class User: NSManagedObject {

    @NSManaged var id: String

    //MARK: - Initialize
    convenience init(id: String, needSave: Bool,  context: NSManagedObjectContext?) {

        // Create the NSEntityDescription
        let entity = NSEntityDescription.entityForName("User", inManagedObjectContext: context!)


        if(!needSave) {
            self.init(entity: entity!, insertIntoManagedObjectContext: nil)
        } else {
            self.init(entity: entity!, insertIntoManagedObjectContext: context)
        }

        // Init class variables
        self.id = id

    }
}
like image 86
Ludovic Avatar answered Jun 23 '26 12:06

Ludovic



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!