有没有办法在不必创建新号码的情况下增加NSNumber实例?
这是我目前正在做的事情:
int photoIndex = hour + minute/30;
NSNumber* currentCount = [self.photosByTime objectAtIndex:photoIndex];
[self.photosByTime replaceObjectAtIndex:photoIndex withObject:[NSNumber numberWithInt:currentCount.intValue +1]];
有没有办法在不必每次都替换数组内容的情况下进行增量?
答案 0 :(得分:1)
你做得对,因为NSNUmber不可变,所以每次改变都必须有一个新的。