Instance Method
インスタンスメソッド
classNameForClass:
Returns the class name with which this archiver encodes instances of a given class.
それでこのアーカイバがある与えられたクラスのインスタンスをエンコードするところのクラス名を返します。
Declaration
宣言
- (NSString
*)classNameForClass:(Class)cls;
Parameters
パラメータ
cls
The class for which to determine the translation mapping.
このクラスに対して変換マッピングを特定します。
Return Value
戻り値
The class name with which the receiver encodes instances of cls
. Returns nil
if the receiver does not have a translation mapping for cls
. The class’s separate translation map is not searched.
レシーバがcls
のインスタンスをエンコードするのに使うクラス名。nil
を返します、もしレシーバがcls
に対する変換マッピングを持たないならば。クラスの持つ独立した変換マップは、調べられません。
See Also
参照
Managing Classes and Class Names
クラスとクラス名を管理する
+ setClassName:forClass:
Sets a global translation mapping to encode instances of a given class with the provided name, rather than their real name.
あるグローバル転換マッピングを設定することで、ある与えられたクラスのインスタンスそれらをその提供された名前でエンコードします、それらの実際の名前ではなく。
+ classNameForClass:
Returns the class name with which the archiver class encodes instances of a given class.
それでアーカイバクラスがある与えられたクラスのインスタンスをエンコードするところのクラス名を返します。
- setClassName:forClass:
Sets a mapping for this archiver to encode instances of a given class with the provided name, rather than their real name.
このアーカイバに対するあるマッピングを設定することで、与えられたクラスのインスタンスそれらをその提供された名前でエンコードします、それらの実際の名前ではなく。