Function 関数

NSCreateZone

Creates a new zone. 新しいゾーンを作成します。

Declaration 宣言

NSZone * NSCreateZone(NSUInteger startSize, NSUInteger granularity, BOOL canFree);

Return Value 戻り値

A pointer to a new zone of startSize bytes, which will grow and shrink by granularity bytes. If canFree is 0, the allocator will never free memory, and malloc will be fast. Returns NULL if a new zone could not be created. startSizeバイトの新しいゾーンへのポインタ、それはgranularityバイトだけ成長および縮小します。canFreeが0ならば、アロケータは決してメモリを自由にしません、そしてmallocは高速です。NULLを返します、もし新しいゾーンが作成されることができなかったならば。

See Also 参照

Managing Zones ゾーンを管理する