0
我想使用NSMutableArray,然後使用它的內容。我的代碼如下:把東西放進NSMutableArray並使用它
[_sizedWordList addObject:[_wordList objectAtIndex:i]];
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Alert" message:[_sizedWordList objectAtIndex:0] delegate:nil cancelButtonTitle:@"Cancel" otherButtonTitles: nil];
[alert show];
[alert release];
凡_sizedWordList是NSMutableArray
和_wordList是NSArray
。出於某種原因,警報未顯示。
它顯示如果你把一些靜態字符串,而不是你的數組的內容? – 2011-04-19 07:26:05
@Nick號即使我說'[_sizedWordList addObject:@「hello」];'並試圖顯示那麼它不起作用。 – locoboy 2011-04-19 07:34:25
你可以嘗試像這樣:[[[UIAlertView alloc] initWithTitle:@「Alert」message:@「A message」delegate:nil cancelButtonTitle:@「Cancel」otherButtonTitles:nil];'? – 2011-04-19 07:37:12