我正在寻找可能是我新手问题的简单答案。我知道NSMutableArray
只能保存对象,所以当我将双精度放入数组时,我使用了[myArray addObject:[NSNumber numberWithDouble:aValue]];
转换方法。我现在需要做的是将值拉出为双倍并对其进行平均。我相信我将使用快速枚举方法与FoR循环。
我只需要知道如何让以下工作。
double total;
total = [myArray objectAtIndex:i]
答案 0 :(得分:7)
total = [[myArray objectAtIndex:i] doubleValue];