for Xcode produced Core Data managed objects, do I need to add a dealloc method to release variables?

So when I have a core data model for my iPhone app, and I let XCode generate the managed object classes, I note there is no dealloc method. Do I need to "release" in a dealloc method myself manually to the variables/properties?

I see the code-generated managed object classes have:

  • the property is marked "retain" in the header file
  • in the implementation file it is set up with "@dynamic" (i.e. not @sythesise)

thanks

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

You don't need to (and shouldn't) modify these generated files. The @dynamic means that the property implementations will be provided at runtime. Dynamic Properties

link|improve this answer
feedback

There's two parts to this. For the attributes that you define in you're model, don't release them in a dealloc method. Core Data is managing those for you. But if you add other ivars to the class that gets generated, say you have an imageData attribute and then make a UIImage out of it that you hold in your NSManagedObject subclass, then you need to add the dealloc method and release it like you would in any other object.

I'd highly recommend you start using mogenerator. It's nice since it generates a machine file and a user file to keep the stuff that's handled automatically for you separate from your custom code.

link|improve this answer
thanks - re mogenerator tried it with XCode4 and had some hiccups - seems like it's not there yet re XCode4 - github.com/rentzsch/mogenerator/issues/48 – Greg May 25 '11 at 1:38
Yeah, the automatic support isn't there yet, but I haven't had any issues with triggering the applescript manually to generate the files. You just have to remember to do that after making changes to your model. I'll put up with that for now since I prefer having the separate files for the machine and user code. – McCygnus May 25 '11 at 1:41
oh I see what you mean - I've used a "category" to add in a couple of methods with one of my managed objects created by xcode – Greg May 25 '11 at 2:42
+1 for categories – jjwchoy May 25 '11 at 5:12
feedback

While you do not need to release Core Data managed properties, you should clean up any properties or instance variables your custom Core Data subclass creates. However, you cannot rely on dealloc to be called on Core Data subclasses. Use willTurnIntoFault to perform any cleanup necessary.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.