对iOS有点新,我也在学习Android。对数组有点困惑。
如何将其转换为 iOS:
result
作为索引
nextresult[x]
索引数组
for(x = 0; x < array.size; x++)
{
if(result < nextresult[x])
nextresult[x] -= 1;
}
如果需要调整,它将检查数组的所有内容,
可能关注会给你一些想法 - 正如你提到的,我已经考虑关注 - result' is value and
nextresult`是数组。
for(x = 0; x < [array count]; x++)
{
if(result < [nextresult objectAtIndex:x]) {
[nextresult objectAtIndex:x] -= 1;
}
}
编辑 - 如果你想在数组中添加整数 -
[yourArray addObject:[NSNumber numberWithInt:1]]; // Objective C array store objects. so we need to convert primitive data type into object.