gpt4 book ai didi

ios - Objective-C For-In循环获取索引

转载 作者:IT王子 更新时间:2023-10-29 08:08:14 25 4
gpt4 key购买 nike

考虑以下语句:

for (NSString *string in anArray) {

NSLog(@"%@", string);
}

如何在不使用传统的 for 循环且不检查 string 的值的情况下获取 anArraystring 的索引 anArray 中的每个对象?

最佳答案

数组保证按对象顺序迭代。所以:

NSUInteger index = 0;
for(NSString *string in anArray)
{
NSLog(@"%@ is at index %d", string, index);

index++;
}

或者,使用 block 枚举器:

[anArray
enumerateObjectsUsingBlock:
^(NSString *string, NSUInteger index, BOOL *stop)
{
NSLog(@"%@ is at index %d", string, index);
}];

关于ios - Objective-C For-In循环获取索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12119103/

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