我試圖在此函數調用 時將隨機數添加到此數組的末尾。到目前爲止,我已經縮小了它的範圍。 當我檢查,看看是否有任何數組,它說0. 所以現在我很難住。我在考慮MutableArray在我使用它們之前發佈它的內容。問題是我不知道該用什麼。一個按鈕調用函數,幾乎所有其他的東西都被處理掉了。向數組添加整數
NSMutableArray * choices;
-(void) doSomething {
int r = arc4random() % 4;
//The problem...
[choices addObject:[NSNumber numberWithInt:r]];
int anInt = [[choices objectAtIndex:1] integerValue];
NSLog(@"%d", anInt);
//I'm getting nothing no matter what I do.
//some type of loop that goes through the array and displays each element
//after it gets added
}
我環顧四周,我沒有看到它如何不誠實地工作。 – Ohmnastrum 2010-05-21 20:49:43