我的String
应用中有Swift
个数组。我想在标签中显示它们,每个标签用,
分隔。我试过这个:
for hashtag in placeHashtags {
text = text + "\(hashtag), "
}
if (placeHashtags.count > 0){
let text1 = text.remove(at: text.index(before: text.endIndex-1))
text = text1.description
}
(第二个if
是删除最后一个逗号),但我的标签中没有看到任何内容。
我该如何解决?
答案 0 :(得分:2)
你应该写下这个:
let array = ["Hi", "Hello", "How", "Are", "You", "Fine"]
let joined = array.joined(separator: ", ")