Blog
Synthesized Methods For The Property NSString *title
In this blog I will explain how to Synthesized Methods For The Property NSString *title without using @ synthesize Keyword.
- (NSString*) title // Getter method
{
return title;
}
- (void) setTitle: (NSString*) newTitle //Setter method
{
if (newTitle != title)
{
[title release];
title = [newTitle retain]; // Or copy, depending on your needs.
}
}