我想知道如何设置名称值" ok"和" 123"进入第一个数组[" here"]我希望其他数组为空。
import Foundation
import CoreLocation
class Spot {
let name: String
let location: CLLocation
init (lat: CLLocationDegrees, lng: CLLocationDegrees, name: String = "") {
self.location = CLLocation(latitude: lat, longitude: lng)
self.name = name
}
}//class
extension Spot {
static var list: [Spot] {
return [
Spot(lat: 35.124585, lng: 135.154821, name: "ok"),
Spot(lat: 35.05406, lng: 136.215414, name: "123")
]
}
}
var array = [["here"],[],[],[],[],[]]
答案 0 :(得分:1)
您需要访问数组数组中的第一个数组,然后将这些元素插入其中:
array[0].append("123")
array[0].append("ok")
你可以通过这种方式达到同样的目标:
array[0] += ["123", "ok"]