如何在Swift中删除Plist重复值?
if let bundlePath = Bundle.main.path(forResource: "Places", ofType: "plist") {
if let dicionario = NSDictionary(contentsOfFile: bundlePath) {
places = dicionario["places"] as? NSArray
//places = Array(Set(places))
tableView.reloadData()
}
}
我尝试使用places = Array(Set(places))
,但我遇到了错误
我可以将NSArray转换为数组吗?