hopefully this is an easy one.
I'm coding in objective-c and i'm wondering if there are any tools/tricks (anything) that you use for this annoyance (see below).
Is there an easier way to declare variable/properties within the header and implementation files?
e.g., I'm not a big fan of typing this in the header:
NSString *commercial_name;
@property (nonatomic, retain) NSString *commercial_name
and then typing
@synthesize commercial_name
in the implementation
it's quite tedious when all 3 things are needed (or when I have to delete all 3) and I'm wondering if there's a plugin (or something) where you can simply say, I'm going to have a variable called foo of type bar and I want getter & setter methods for it. poof it's done.
TYVM!