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

isEqualToArray:

Compares the receiving array to another array. 受け手側の配列を別の配列と比較します。

Declaration 宣言

- (BOOL)isEqualToArray:(NSArray<ObjectType> *)otherArray;

Parameters パラメータ

otherArray

An array. 1つの配列。

Return Value 戻り値

YES if the contents of otherArray are equal to the contents of the receiving array, otherwise NO. YESの内容が受け手側の配列の内容と同等ならばotherArray、そうでなければNO

Discussion 議論

Two arrays have equal contents if they each hold the same number of objects and objects at a given index in each array satisfy the isEqual: test. 2つの配列は、それらがめいめい同じ数のオブジェクトを保持して、めいめいの配列の中のある与えられたインデックスでのオブジェクトがisEqual:テストを満足させるならば、同等です。

See Also 参照

Comparing Arrays 配列を比較する