Does anybody have an Xcode script for generating @property and @synthsize directives for instance variables in a class?
|
I use Accessorizer which does this and a whole lot more. http://www.kevincallahan.org/software/accessorizer.html very inexpensive and powerful. |
|||
|
|
|
This is the one I came up with based on one I found a long time ago, rewritten in Python and with the improvements that it can generate multiple properties at once, among other things. It will generate properties for all selected instance variable using (copy) as the attribute. There are still some edge cases with multiple @interfaces or @implementations in a file, as well as some with unusual identifiers or asterisk placement (as in *const), but it should cover most typical coding styles. Feel free to edit/post modifications if you fix any of these cases.
|
|||||
|
|
This is a python script for Xcode 3.2.4 that generates; interface properties, implementation synthesize, and dealloc's. To install, copy this script, go to Xcode scripts menu (2nd to last) "Edit User Scripts..." Add it under Code, create a new script name, and paste the python script below. To use just select the variables under the @interface, then call this script. It will then add all of the @property's, in the implementation and all of the @synthesize and dealloc's. It won't add IBOutlet to any of your Labels or Buttons since it doesn't know this, but this is easy to add manually. Indentation of the script below is critical so don't change it.
|
||||
|
|
|
Here is the userscript I currently use - it works on one instance variable at a time. It tries to use the right retain mechanism (simple types are not retained), and it also creates the @synthesize statement in the implementation file - currently it does not yet create dealloc statements for you.
|
|||
|
|
|
Whoa, there's a whole lot of crazy scripting goin' on here. As of Xcode 4.4 (maybe before)... Your
can be "accessored" via
and edit the instance variable directly via the auto-generated-with-leading-underscore like..
no As for quick and easy entering of such
last but not least, and some may call me crazy.. but I throw the following macros into my
along with similarly structured
|
|||
|
|
Here's one I wrote up yesterday to do the @property directives before coming across this question a few hours later. It's a simple text filter and would be trivial to extend it to @synthesize directives (add an appropriate
I run this using "no input" and "replace document contents" as the options for I/O in the User Scripts editor. |
||||
|
|
|
Accessorizer http://www.kevincallahan.org/software/accessorizer.html does this stuff and a lot more. It also handles custom prefixes and postfixes (suffixes). If you want Google's underscore, you got it. If you want to change it, change it on the fly - no need to edit scripts. Further, there's a defaults table where you can define default property specifiers based on the type of ivar passed in (copy, retain, readonly, assign etc) . It does IBOutlet detection and automatically inserts the IBOutlet keyword, nils out your views for -viewDidUnload, does several styles of dealloc. It also writes all those hairy accessors for collections (NSMutableArray and NSSet). It does key-archiving, various locking approaches, it can sort your property and synthesize blocks, write KVO code, Singleton code, convert to selector, generate HeaderDoc tags, NSLog() and more ... It also has a flexible styles tab for putting braces on newline or not, for spacing, for custom argument names etc. Most things are handled through Services, so you simply select your ivar block, hit a keystroke or two and you're done. If you minimize Accessorizer to the dock, its interface doesn't come to the front, allowing you to stay focused in Xcode or any other editor that supports Services. Of course, Accessorizer also writes out explicit accessors (as in Objective-C 1.0) and allows you to override properties - all with a simple toggle of a switch. You can even customize the override based on the type passed in. Watch the videos to see it in action. |
|||
|
|