有点新的iOS,我也在学习Android。有点混淆阵列。
如何将其转换为iOS:
result
作为索引
nextresult[x]
索引数组
for(x = 0; x < array.size; x++)
{
if(result < nextresult[x])
nextresult[x] -= 1;
}
如果需要调整数组,它将检查数组的所有内容,
答案 0 :(得分:2)
可能会跟着会给你一些想法 -
如你所述,我考虑过以下 - 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.
答案 1 :(得分:2)