Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は入れ子になっていますNSArray
NSArray
int row = [myarray indexOfObject:module];
indexOfObjectメソッドは間違った結果を返します。何か案が?
indexOfObject
これは通常、オブジェクトmoduleまたは 内のオブジェクトの 1 つがメソッドを正しくNSArray実装していない場合に発生します。のクラスにこのメソッドがisEqual:あることを確認してくださいmodule
module
isEqual:
- (BOOL)isEqual:(id)anObject { ... }
メソッドはYES、このオブジェクトが と等しい場合に戻り、そうでない場合anObjectに戻りNOます。
YES
anObject
NO