无法理解该对象为零:
if ([self indexFromObjectProperty:UUID])
{}
else
{}
问题是 indexFromObjectProperty 可以为 0 但我需要检查数组中没有这样的元素时的情况。
-(NSInteger)indexFromObjectProperty:(NSString *)property
{
NSInteger iIndex;
for (int i = 0; i < [items count]; i++)
{
if([property isEqualToString:[[items objectAtIndex:i] objectForKey:@"UUID"]])
{
iIndex = i;
}
}
return iIndex;
}
我该如何解决这个问题?