我在尝试在textView中逐行返回String数组的元素时遇到问题。我确实在我的代码序列中使用了特殊的回车符,以在不同的行上返回数组的元素。但是,到目前为止我还没有成功。这是我输入内容的代码片段:
txtViewQuestionStatus.text = "\(numCorrect) correct Answers, However these are the questions answered INCORRECTLY: \(model.incorrectItems())\n" //Have text view present number of correct answers and list incorrect Questions line by line.
我的源代码中有什么问题?谢谢!
答案 0 :(得分:1)
model.incorrectItems()
返回什么?你可以发布你的代码部分吗?如果它返回一个字符串数组,你可以像这样加入它们:
"... INCORRECTLY: \(model.incorrectItems().joinWithSeparator("\n"))\n"