2012-06-27 140 views
-2

有點新來iOS,我也在學習Android。有點混亂陣列。數組混淆

如何將其轉換成iOS版:

result爲索引

nextresult[x]數組索引

for(x = 0; x < array.size; x++) 
{ 
    if(result < nextresult[x]) 
     nextresult[x] -= 1; 
} 

它將iccheck所有陣列的內容,如果它需要的調整與否,

回答

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. 
+0

如何有一個NSMutableArray基於button.tag,這是保存在這樣的:NSUserDefaults * prefs = [NSUserDefaults standardUserDefaults]; [prefs setInteger:1 forKey:@「Key」]; – Bazinga

+0

@user - 檢查編輯過的帖子。 – rishi

2

閱讀蘋果的優秀開發者文檔。

你可以找到有關NSArray類here的文檔,或者在你的Xcode組織者。

我已經低估了你的問題,因爲它可以很容易地通過查看文檔解決。