Are there any tools to speed up Cocoa development?
        Posted  
        
            by user262325
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by user262325
        
        
        
        Published on 2010-06-13T05:20:52Z
        Indexed on 
            2010/06/13
            5:32 UTC
        
        
        Read the original article
        Hit count: 271
        
cocoa
I noticed that there is much repeated work to do when creating Cocoa source code.
For example, if I set an instance for an object:
NSMutableArray *infoArray;  
I need add code:
@property (retain,nonatomic)    NSMutableArray *infoArray;  
@synthesize infoArray;  
in - (void)dealloc {
I also need add:
[infoArray release];
Is there any tool that can automate this, perhaps by automatically paste or copy the source code and add the repeated code at right place?
© Stack Overflow or respective owner