將數組中的前三個對象(或1或2,如果數組有多大)轉換爲逗號分隔的字符串,最有效的方法是什麼?我有一種感覺,有塊的方式,但我不能工作前三項的NSArray到NSString中?
對象是樂隊,存儲在bandArray,每個樂隊的屬性包括一個bandName。
所以輸出會是這樣的
String
"Abba" <- when there is one object
"Abba, Kiss" <- when there is two objects
"Abba, Kiss, Nirvana" <- when there is three objects
"Abba, Kiss, Nirvana" <- when there is four objects. after three, names are ignored
而且,使用'[brandArray valueForKeyPath:@ 「bandName」]'方法來獲得'bandName's作爲數組 – EmptyStack
@EmptyStack你說得對,我忘了這部分的質詢。編輯。 – Jilouc
好的。然後我會刪除我的答案。 :-) – EmptyStack