我很困惑,因为我在字典中定义表视图中的行内容,但是当我尝试添加它时,它会向我显示错误。
var places = [[String: Any]]()
class TableViewController: UITableViewController {
override func viewDidLoad() {
super.viewDidLoad()
if places.count == 0 {
places.append(["name":"Taj Mahal", "lat": "27.175277", "lon": "78.042128"])
}
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath)
cell.textLabel?.text = places[indexPath.row]["name"]
return cell
}
错误发生在我定义的部分:
cell.textlabel?.text = places[indexPath.row]["name"]
答案 0 :(得分:0)
应该是:
places[indexPath.row]["name"] as! String
由于类型为Any
,您需要将其指定为String
,因为label
需要String
s。