Accessorizer  offers a wide range of preferences to appeal to coders with varying coding styles.


Included are settings for ivar prefixes and suffixes, argument prefixes, spacing, bracing placement, headerdoc ...


New in 2.0 are Configuration Sets, custom formatting for @property statements and custom formatting for pragma marks.


- (NSString *)title;

- (void)setTitle:(NSString *)newTitle;


- (QVSong *)song;

- (void)setSong:(QVSong *)newSong;


- (int)track;

- (void)setTrack:(int)newTrack;


- (float)tempo;

- (void)setTempo:(float)newTempo;




//===========================================================

//  title

//===========================================================

- (NSString *)title { return [[title retain] autorelease]; }


- (void)setTitle:(NSString *)newTitle

{

    if (title != newTitle) {

        [title release];

        title = [newTitle copy];

    }

}

HeaderDoc

Prefixes and/or Suffixes ...

.h

   

NSDictionary *myDict_;

NSString *myTitle_;

NSInteger myCounter_;

.m


@property (nonatomic, retain) NSDictionary *dict;

@property (nonatomic, readwrite, copy) NSString *title;

@property (nonatomic, assign) NSInteger counter;



@synthesize dict = myDict_;

@synthesize title = myTitle_;

@synthesize counter = myCounter_;



self.dict = nil;

self.title = nil;

Here’s a short video clip showing Coding Styles in action...

Coding Styles

Here’s a short video clip showing Prefixes and Postfixes in action...

What developers 
are saying ...testimonials.htmltestimonials.htmlshapeimage_1_link_0shapeimage_1_link_1
Videos & TutorialsaccessorizerVideos.htmlaccessorizerVideos.htmlshapeimage_3_link_0
Homeaccessorizer.htmlaccessorizer.htmlshapeimage_4_link_0
© 2002 - 2009 Kevin Callahanhttp://www.kevincallahan.orgshapeimage_5_link_0

KVO

Initialization MethodsinitMethods.htmlinitMethods.htmlshapeimage_6_link_0

Features

Indexed AccessorsindexedAccessors.htmlindexedAccessors.htmlshapeimage_7_link_0

Header styles

BUYhttp://store.eSellerate.net/s.aspx?s=STR5524388698

only $15