Is there anyway to make xcode (4.2) automatically add synthesize and the empty method bodies to the implementation file (for properties and methods defined in the interface) ?
Is there anyway to make xcode (4.2) automatically add synthesize and the empty method
Share
There is no built in solution for that in 4.2. You could try creating a shell script that searches your header for properties and then adds the @synthesize lines at the right place.
Why don’t you use the latest (4.4) version instead? 4.4 can automatically synthesize the ivars for you. All you have to do is declare a @property and Xcode takes care of the rest.