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

decodeObjectOfClasses:forKey:

Decodes an object for the key, restricted to the specified classes. このキーに対するあるオブジェクトを復号します、指定されたクラスそれらに限定されます。

Declaration 宣言

- (id)decodeObjectOfClasses:(NSSet<Class> *)classes 
                     forKey:(NSString *)key;

Parameters パラメータ

classes

A set of the expected classes. 一揃いの限定されるクラス。

key

The coder key. コーダーキー。

Return Value 戻り値

The decoded object. 復号されたオブジェクト。

Discussion 議論

The class of the object may be any class in the classes set, or a subclass of any class in the set. Otherwise, the behavior is the same as decodeObjectOfClass:forKey:. オブジェクトのクラスは、classes集合の中の何らかのクラス、または集合の中の何らかのクラスのサブクラスかもしれません。それ以外では、その挙動はdecodeObjectOfClass:forKey:と同じです。

See Also 参照

Decoding General Data 一般的なデータを復号する