- firstObjectCommonWithArray:
Returns the first object contained in the receiving array that’s equal to an object in another given array.
受け手側の配列の中に含まれる最初のオブジェクトを返します、それは、別の与えられた配列の中のあるオブジェクトと同等なものです。
Availability 有効性
Technology
- (BOOL)isEqualToArray:(NSArray
<ObjectType > *)otherArray;
otherArray
An array. 1つの配列。
YES
if the contents of other
are equal to the contents of the receiving array, otherwise NO
.
YES
の内容が受け手側の配列の内容と同等ならばother
、そうでなければNO
。
- firstObjectCommonWithArray: