Go to the first, previous, next, last section, table of contents.

Creating a Collection

Basic Creating

@deftypemethod Collection {} @keyword{-init}

@deftypemethod Collection {} @keyword{-initEncoding:} (const char *)contentEncoding

Create with alloc and init. Specify the type of contents using initEncoding:. For example:

id arrayHoldingInts = [[Array alloc] initEncoding:@encode(int)];

<<This section unfinished.>>

Keyed Creating


Go to the first, previous, next, last section, table of contents.