标签: ios textbox nsmutablearray
我有一个字符串数组,其中包含购买摘要,我需要在该视图加载时将该数组显示到文本框中。代码看起来会是什么样的呢?
答案 0 :(得分:0)
你会使用componentsJoinedByString
componentsJoinedByString
//arr is your curent array NSString *str = [arr componentsJoinedByString:@" "]; textField.text = str;