gpt4 book ai didi

objective-c - iOS Objective-C - for 循环问题

转载 作者:行者123 更新时间:2023-11-28 18:07:00 25 4
gpt4 key购买 nike

下面的代码在 [myArray objectAtIndex:i]; 行中产生错误,我似乎无法弄清楚为什么?

有什么想法吗?

int total = 0;
for (int i = 0; i < myArray.count; i++) {
int tempNumber = [myArray objectAtIndex:i];
total = total + tempNumber;
}

最佳答案

这可能是因为您正在将对象设置为 int。根据定义,objectAtIndex 返回一个对象。

根据 myArray 中对象的类型,您可以尝试这样的操作:

int tempNumber = [[myArray objectAtIndex:i] intValue];

关于objective-c - iOS Objective-C - for 循环问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11401193/

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