Copies all the objects contained in the array to aBuffer.
配列のすべてのオブジェクトをaBufferにコピーします。
Availability
有効性
iOS 2.0–11.0 Deprecated
iPadOS 2.0–11.0 Deprecated
macOS 10.0–10.13 Deprecated
Mac Catalyst 13.1–13.1 Deprecated
tvOS 9.0–11.0 Deprecated
watchOS 2.0–4.0 Deprecated
Technology
Foundation
ファウンデーション
Declaration
宣言
- (void)getObjects:(ObjectType_Nonnull *)objects;
Parameters
パラメータ
aBuffer
A C array of objects of size at least the count of the array.
オブジェクト(objects)のC配列、少なくともその配列の総数の大きさ。
Discussion
議論
The method copies into aBuffer all the objects in the array; the size of the buffer must therefore be at least the count of the array multiplied by the size of an object reference, as shown in the following example (note that this is just an example, you should typically not create a buffer simply to iterate over the contents of an array):
このメソッドはaBufferへこの配列の中のすべてのオブジェクトをコピーします;バッファのサイズは、したがって少なくともオブジェクト参照サイズ掛ける配列総数でなければなりません、以下の例で示されるように(これは単なる例であることに注意してください、あなたは概して配列要素全体に繰り返し処理するためにバッファを簡単に作成すべきではありません):
Special Considerations
特別な注意事項
This deprecated method is unsafe because it could potentially cause buffer overruns.
この非推奨メソッドは安全ではありません、なぜならそれは潜在的にバッファオーバーランを引き起こすからです。
Copies references to objects contained in the array that fall within the specified range to aBuffer.
この配列に含まれるオブジェクトで、指定された範囲内に収まるものへの参照をaBufferにコピーします。
Returns an array containing the objects in the array at the indexes specified by a given index set.
与えられたインデックス集合によって指定されるインデックスでの、この配列のオブジェクトを含んでいる配列を返します。