2013-11-27から1日間の記事一覧

コンビニエンスコンストラクタ

よくあるobjectWithxxのようなやつ。クラスメソッドで定義して +(id)objectWithxx:(int)num{ return [[[Object alloc] initWithxx] autorelease]; } -(id)initWithxx:(int)num{ [super init]; self.num = num; return self; }Object *object = [Object objec…