有點新來iOS,我也在學習Android。有點混亂陣列。數組混淆
如何將其轉換成iOS版:
result
爲索引
nextresult[x]
數組索引
for(x = 0; x < array.size; x++)
{
if(result < nextresult[x])
nextresult[x] -= 1;
}
它將iccheck所有陣列的內容,如果它需要的調整與否,
有點新來iOS,我也在學習Android。有點混亂陣列。數組混淆
如何將其轉換成iOS版:
result
爲索引
nextresult[x]
數組索引
for(x = 0; x < array.size; x++)
{
if(result < nextresult[x])
nextresult[x] -= 1;
}
它將iccheck所有陣列的內容,如果它需要的調整與否,
可能下面會給你一些想法 - 就像你我提到,我已考慮以下 - 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.
如何有一個NSMutableArray基於button.tag,這是保存在這樣的:NSUserDefaults * prefs = [NSUserDefaults standardUserDefaults]; [prefs setInteger:1 forKey:@「Key」]; – Bazinga
@user - 檢查編輯過的帖子。 – rishi