我有NSString,NSString的內容來自一個url。我想在這個NSString之間添加一個單詞,然後是一個特定的單詞。被這個的NSString將不斷在動態NSString的中間添加一個字符串
改變,例如:
我得到像" hi mac this is ios"
一個數據,這個字符串可以不斷地改變這樣的 " hi ios this mac" or hi this is mac ios"
等
我想補充像一個詞「你好」,其次是 「陸委會」 總是
" hi mac hello this is ios"
" hi ios this mac hello"
"hi this is mac hello ios"
我怎麼能做到這一點
意味着你要加上「你好」後始終「蘋果電腦」? – Exploring
是的,我需要相同的 –
@PradeepKumar:你可以使用insertString:atIndex:...查看我的答案。 –