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

isEqualToData:

Returns a Boolean value indicating whether this data object is the same as another. このデータがもう1つものと同じかどうかを示すブール値を返します。

Declaration 宣言

- (BOOL)isEqualToData:(NSData *)other;

Parameters パラメータ

otherData

The data object with which to compare the receiver. それとレシーバを比較することになるデータオブジェクト。

Return Value 戻り値

YES if the contents of otherData are equal to the contents of the receiver, otherwise NO. YESotherDataの内容がレシーバの内容と等しいならば、そうでなければNO

Discussion 議論

Two data objects are equal if they hold the same number of bytes, and if the bytes at the same position in the objects are the same. 2つのデータオブジェクトは、それらが同じ数のバイトを保持するならば、そしてオブジェクトの中の同じ位置でのバイトが同じであるならば等しいです。

See Also 参照

Testing Data データをテストする