func copy(with: NSZone?) -> Any
Returns a new instance that’s a copy of the receiver.
新しいインスタンスを返します、それはレシーバの複製です。
func mutableCopy () -> Any
Returns the object returned by where the zone is
nil
.Availability 有効性
Technology
func mutableCopy(with zone: NSZone
? = nil) -> Any
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. 返されるオブジェクトは、暗黙的にセンダーによって保有されます、それはそれを解放することに責任があります。返されるコピーは可変です、元のものが可変であろうとなかろうと。
func copy(with: NSZone?) -> Any
func mutableCopy () -> Any
nil
.