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

objectAtIndexedSubscript:

Returns the object at the specified index of the set. 集合の指定されたインデックスでのオブジェクトを返します。

Declaration 宣言

- (ObjectType)objectAtIndexedSubscript:(NSUInteger)idx;

Parameters パラメータ

index

The object located at index. インデックスで位置するオブジェクト。

Return Value 戻り値

If index is beyond the end of the ordered set (that is, if index is greater than or equal to the value returned by count), an NSRangeException is raised. indexが順序集合の終わりを越えるならば(すなわち、インデックスがcountによって返される値より大きいか等しいならば)、NSRangeExceptionが引き起こされます。

Discussion 議論

This method is the same as objectAtIndex:. このメソッドはobjectAtIndex:と同じです。

See Also 参照

Accessing Set Members 集合メンバにアクセスする