gpt4 book ai didi

iphone - 遍历 NSArray objectAtIndex

转载 作者:搜寻专家 更新时间:2023-10-30 19:53:44 33 4
gpt4 key购买 nike

NSInteger *count = [monLessonArrayA count]; 对于 (i = 0; i < count; i++) { arrayVar = [monLessonArrayA objectAtIndex:i];

我收到一条错误消息,提示我未声明 i,如何将 objectAtIndex 设置为 i 以便每次循环递增它?

谢谢。

最佳答案

因为你的 i 没有声明。

for (int i = 0; i < count; i++)

此外,您的 NSInteger 不需要 *

NSInteger count = [monLessonArrayA count]; 

关于iphone - 遍历 NSArray objectAtIndex,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3694563/

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