+ allocWithZone:
Returns a new instance of the receiving class.
レシーバのクラスの新しいインスタンスを返します。
- init
Implemented by subclasses to initialize a new object (the receiver) immediately after memory for it has been allocated.
サブクラスによって実装されて、新しいオブジェクト(レシーバ)を、それのためのメモリが割り当てられた直後に初期化します。
- copy
Returns the object returned by
copyWithZone:
.+ copyWithZone:
Returns the receiver.
レシーバを返します。
- mutableCopy
Returns the object returned by
mutableCopyWithZone:
where the zone is nil
.+ mutableCopyWithZone:
Returns the receiver.
レシーバを返します。
- dealloc
Deallocates the memory occupied by the receiver.
レシーバによって占有されたメモリを割り当て解除します。