1

我有一个包含购买摘要的字符串数组,每当加载该视图时,我都需要将该数组显示到文本框中。完成此操作的代码是什么样的?

4

1 回答 1

0

你会用componentsJoinedByString

//arr is your curent array
NSString *str = [arr componentsJoinedByString:@" "];
textField.text = str;
于 2012-07-01T20:41:45.573 回答