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

subdataWithRange:

Returns a new data object containing the data object's bytes that fall within the limits specified by a given range. データオブジェクトの持つバイトで、ある与えられた範囲によって指定される制限内に収まるものを含んでいる新しいデータオブジェクトを返します。

Declaration 宣言

- (NSData *)subdataWithRange:(NSRange)range;

Parameters パラメータ

range

The range in the receiver from which to get the data. If this range is not within the data object's range of bytes, NSRangeException is raised. レシーバの中のこの範囲からデータを取得します。この範囲がデータオブジェクトの持つバイト範囲内でないならば、NSRangeExceptionが引き起こされます。

Return Value 戻り値

A data object containing the receiver’s bytes that fall within the limits specified by range. レシーバの持つバイトで、rangeによって指定される制限内に収まるものを含んでいるデータオブジェクト。

Discussion 議論

A sample using this method can be found in Working With Binary Data. このメソッドを使う見本は、Working With Binary Dataで見つけることができます。

See Also 参照

Finding Data データを見つける