- copyWithZone:
Returns a new instance that’s a copy of the receiver.
新しいインスタンスを返します、それはレシーバの複製です。
- mutableCopy
Returns the object returned by where the zone is
nil
.Availability 有効性
Technology
- (id)mutableCopyWithZone:(NSZone
*)zone;
zone
This parameter is ignored. Memory zones are no longer used by Objective-C. このパラメータは無視されます。メモリゾーンは、もはやObjective-Cによって使われません。
The returned object is implicitly retained by the sender, which is responsible for releasing it. The copy returned is mutable whether the original is mutable or not. 返されるオブジェクトは、暗黙的にセンダーによって保有されます、それはそれを解放することに責任があります。返されるコピーは可変です、元のものが可変であろうとなかろうと。
- copyWithZone:
- mutableCopy
nil
.