iOSは初めてで、Androidも勉強しています。配列をちょっと混乱させます。
これを iOS に変換する方法:
result
指標として
nextresult[x]
インデックスの配列
for(x = 0; x < array.size; x++)
{
if(result < nextresult[x])
nextresult[x] -= 1;
}
調整が必要かどうかにかかわらず、配列のすべての内容を iccheck します。
Apple の優れた開発者向けドキュメントを読んでください。
NSArray クラスに関するドキュメントは、こちら、または Xcode オーガナイザーにあります。
ドキュメントを見るだけで非常に簡単に解決できたので、私はあなたの質問に反対票を投じました。
以下はあなたにいくつかのアイデアを与えるかもしれません-あなたが言及したように、私は次のことを検討しました- 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.