// // SomeObject.m // #import "SomeObject.h" @implementation SomeObject @synthesize title; @synthesize subtitle; -(id)init { if (self=[super init]) { self.title=[NSString stringWithFormat:@"allyouneed"]; self.subtitle=[[[NSString alloc] init] autorelease]; } return self; } -(void)dealloc { self.title=nil; self.subtitle=nil; [super dealloc]; } @end