I have a sub-class of NSManagedObject, most of the properties are dynamic (created by the managed object), but i have a couple of helper properties which are being created as @synthesize.
What is the correct way of releasing these objects??
- (void)didTurnIntoFault
{
[self.randomVar release];
[super didTurnIntoFault];
}
or
- (void)dealloc
{
[self.randomVar release];
[super dealloc];
}