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...






Features

Header styles
only $15