如何将字典值放入UITextView

时间:2015-07-29 10:12:12

标签: swift dictionary ios8

我有一本字典,需要把它们的值放到UITextView,怎么做?

1 个答案:

答案 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