I'm getting a bit more seasoned with my iPhone development but I still don't know everything. One thing that bugs the hell out of me is having to add properties to a class, because there are four steps involved:
- Add a class member to the Header file
- Add the property definition to the Header file
- Add a synthesize declaration to the implementation file
- Add a release statement to the dealloc method in the implementation file
Is there any easier way to do it? A hidden feature of XCode I don't know about? A tool of some kind maybe?