我有一本字典,需要把它们的值放到UITextView
,怎么做?
答案 0 :(得分:1)
以下是从字典中获取值的示例:
var companies = ["AAPL" : "Apple Inc", "GOOG" : "Google Inc", "AMZN" : "Amazon.com, Inc", "FB" : "Facebook Inc"]
var allValues = [String]()
for (key, value) in companies {
allValues.append(value)
}
allValues //[Apple Inc, Amazon.com, Inc, Facebook Inc, Google Inc]
现在,您可以根据需要在allValues
中显示UITextView
。