NSInteger indexOfMatchedObject = [self.array indexOfObject:object.objectId];
我需要检查indexOfMatchedObject
中是否有值,我该怎么做?
答案 0 :(得分:1)
使用常量NSNotFound
来确定对象是否存在于数组中。
答案 1 :(得分:0)
使用此方法检查数组是否包含值 [self.array containsObject:object.objectId] 。这将返回bool值。