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

encodeArrayOfObjCType:count:at:

Encodes an array of the given Objective-C type, provided the number of items and a pointer. 項目の数とポインタを提供されて、この与えられたObjective-C型の配列をエンコードします。

Declaration 宣言

- (void)encodeArrayOfObjCType:(const char *)type 
                        count:(NSUInteger)count 
                           at:(const void *)array;

Discussion 議論

The values are encoded from the buffer beginning at address. itemType must contain exactly one type code. NSCoder’s implementation invokes encodeValueOfObjCType:at: to encode the entire array of items. Subclasses that implement the encodeValueOfObjCType:at: method do not need to override this method. 値それらは、バッファからaddressで開始して符号化されます。itemTypeは、正確に1つの型コードを含まなければなりません。NSCoderの実装は、encodeValueOfObjCType:at:を発動することでそれら項目からなる配列全体を符号化します。encodeValueOfObjCType:at:メソッドを実装するサブクラスは、このメソッドをオーバーライドする必要はありません。

This method must be matched by a subsequent decodeArrayOfObjCType:count:at: message. このメソッドは、続いて起こるdecodeArrayOfObjCType:count:at:メッセージと調和しなければなりません。

For information on creating an Objective-C type code suitable for itemType, see Type Encodings. itemTypeに適したObjective-C型コードを作成する情報として、Type Encodingsを見てください。

Special Considerations 特別な注意事項

You should not use this method to encode C arrays of Objective-C objects. See decodeArrayOfObjCType:count:at: for more details. あなたは、このメソッドを使ってObjective-CオブジェクトいくらかからなるC配列を符号化すべきではありません。decodeArrayOfObjCType:count:at:を詳細として見てください。

See Also 参照

Encoding General Data 一般的なデータを符号化する