gpt4 book ai didi

objective-c - 通过循环 NSMutableArray 检索整数

转载 作者:行者123 更新时间:2023-12-03 17:30:42 25 4
gpt4 key购买 nike

有人可以告诉我如何通过循环 NSMutableArray 来检索值吗?我的代码基本上将整数添加到数组中,如下所示:

NSMutableArray *ptr = [[NSMutableArray alloc] init];

[ptr addObject:[NSNumber numberWithInt:1]];
[ptr addObject:[NSNumber numberWithInt:2]];
[ptr addObject:[NSNumber numberWithInt:3]];

// How to retrieve them as integers?

我正在尝试从数组中检索每个数字并将它们相加得出一个总值。

最佳答案

其实很简单:

int totalValue = 0;
for(NSNumber *number in myArray) // Use fast enumeration to iterate through the array
{
totalValue += [number intValue];
}

关于objective-c - 通过循环 NSMutableArray 检索整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6885292/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com