- registerCoercer:selector:toConvertFromClass:toClass:
Registers a given object (typically a class) to handle coercions (conversions) from one given class to another.
与えられたオブジェクト(概してあるクラス)を登録して、ある与えられたクラスから別のものへの強制(変換)を取り扱うようにします。
Availability 有効性
Technology
- (id)coerceValue:(id)value
toClass:(Class)toClass;
value
The value to coerce. この値に強制を行います。
toClass
The class with which to represent value
.
このクラスを使ってvalue
を表現することになります。
An object of the class to
representing the value specified by value
. Returns nil
if an error occurs.
クラスto
のオブジェクト、value
によって指定される値を表しています。エラーが起こるならばnil
を返します。
- registerCoercer:selector:toConvertFromClass:toClass: