一个数组包含整数值。有没有任何方法可以添加整数值而无需将其取出。
NSMutableArray *total_point = @[@1, @2, @3, @4, @5, @6];
for (int i = 0; i < total_point.count; i++) {
int res1;
res1 = [(NSNumber *)[total_point objectAtIndex:i] intValue];
}
如何从数组中添加元素