Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
何年も前に書いたのですが、今は見つかりません。
と同じ構文を使用するクラスのクリエーター関数をどのように作成します[NSArray array];か?
[NSArray array];
すなわち
+ (id)object;
それ以外の...
- (id)initWithBlah...
ありがとう
これはコンストラクターと呼ばれ、一般的な実装は次のようになります。
+ (NSArray *)array { return [[[self alloc] init] autorelease]; }