有没有办法从数组中添加整数而不将元素带到外部

时间:2017-02-06 12:05:32

标签: ios objective-c nsmutablearray

一个数组包含整数值。有没有任何方法可以添加整数值而无需将其取出。

       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];

        }

如何从数组中添加元素

0 个答案:

没有答案