我有一個NSMutableArray
。當我使用NSLog
,這是輸出:NSMutableArray:獲取特定對象
2012-12-15 17:58:28.849 Splash-it[504:907] (
"Open House New York",
"Boston Athletic Association",
"Autofest Tanzania"
),
我怎樣才能得到我得到一個NSString
與這些頭銜(考慮到冠軍將改變之一,我想我需要使用objectAtIndex
,但我不不認爲它會在這種情況下工作)?
例如
NSString = @"Boston Athletic Association"
不用多說,如果你拉起['NSArray'](https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Classes/NSArray_Class/NSArray.html)的文檔,這也將有引用[Collections Programming Topics](https://developer.apple.com/library/ios/#documentation/Cocoa/Conceptual/Collections/Articles/Arrays.html#//apple_ref/doc/uid/20000132-BBCCJBIF) ,你會很快找到你的答案。我建議你查看這些文件。 – Rob
好的,但蘋果文檔只是混亂,我總是避免它們 – Alessandro
「我總是避免它們」 - 這是一個問題。有時文檔很難遵循,但其中很多很好,你需要研究它們,否則你將對Apple的框架和編碼範例有一個非常不完整的理解。 – rdelmar