Instance Method
インスタンスメソッド
unarchiver:willReplaceObject:withObject:
Informs the delegate that one object is being substituted for another.
一方のオブジェクトが他方の代理にされていることを委任先に告知します。
Declaration
宣言
- (void)unarchiver:(NSKeyedUnarchiver
*)unarchiver
willReplaceObject:(id)object
withObject:(id)newObject;
Parameters
パラメータ
unarchiver
An unarchiver for which the receiver is the delegate.
それに対してこのレシーバが委任先であるアンアーカイバ。
object
An object in the archive.
アーカイブの中のあるオブジェクト。
newObject
The object with which unarchiver
will replace object
.
unarchiver
がobject
を置き換えるのに使うオブジェクト。
Discussion
議論
This method is called even when the delegate itself is doing, or has done, the substitution with unarchiver:didDecodeObject:
.
このメソッドは委任先それ自身が実行している時でさえ呼び出されます、または実行し終わったら、unarchiver:didDecodeObject:
で代用します。
The delegate may use this method if it is keeping track of the encoded or decoded objects.
委任先は、それがエンコードまたはデコードされたオブジェクトの経過を追うならば、このメソッドを使うかもしれません。
See Also
参照
Decoding Objects
オブジェクトをデコードする