0
名前の値「ok」と「123」を最初の配列に入れる方法を知りたいのですが、他の配列を空にしたい。配列の配列の要素に特定の値を入れる方法
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"],[],[],[],[],[]]
ご返信が遅れました。そんなにありがとうございました。ありがとうございました!! – Daibaku
あなたは大歓迎です、それはあなたを助けてくれてうれしいです –