gpt4 book ai didi

string - (Swift.LazyMapCollection(_base :[ ]

转载 作者:搜寻专家 更新时间:2023-11-01 06:19:29 30 4
gpt4 key购买 nike

代码说完全没问题,没有错误,但是当我去运行模拟器的时候,会出现这样的字样:

(Swift.LazyMapCollection < Swift.Dictionary < Swift.String, Swift.String > (_base:[ ]

我正在尝试创建一个显示报价的报价应用。

This is the screenshot with the simulator

这是导入 Plist 的代码:

import Foundation

struct ImportList {
let path: String

init(FileName: String) {
self.path = NSBundle.mainBundle().pathForResource("\(FileName)", ofType:"plist")!
}

var dict: Dictionary<String, String> {
return NSDictionary(contentsOfFile: path)! as! Dictionary
}

var array: Array<AnyObject> {
return [String](arrayLiteral: String(dict.keys) { $0 as String})
}

func count() -> Int {
return array.count
}
}

谢谢。

最佳答案

在这种情况下不要使用arrayLiteral,只需使用Array():

var array: Array<AnyObject> {
return Array(dict.keys)
}

它将惰性集合安全地转换为实际数组。

关于string - (Swift.LazyMapCollection<Swift.Dictionary<Swift.String, Swift.String>(_base :[ ],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36874973/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com