Instance Method インスタンスメソッド

mutableCopy(with:)

Returns a new instance that’s a mutable copy of the receiver. レシーバの可変のコピーである新しいインスタンスを返します。

Declaration 宣言

func mutableCopy(with zone: NSZone? = nil) -> Any

Parameters パラメータ

zone

This parameter is ignored. Memory zones are no longer used by Objective-C. このパラメータは無視されます。メモリゾーンは、もはやObjective-Cによって使われません。

Discussion 議論

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. 返されるオブジェクトは、暗黙的にセンダーによって保有されます、それはそれを解放することに責任があります。返されるコピーは可変です、元のものが可変であろうとなかろうと。

See Also 参照

Related Documentation 関連文書