@implementation JSTutorial @synthesize title; @synthesize body; @synthesize delegate; - (void)generateTutorial { // do something here? [[self delegate] tutorialDidFinish:self]; } - (void)dealloc { [title release]; [body release]; [super dealloc]; } @end