如何将特定值放入数组数组的元素中

时间:2017-11-25 14:37:23

标签: ios arrays swift

我想知道如何设置名称值" 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"],[],[],[],[],[]]

1 个答案:

答案 0 :(得分:1)

您需要访问数组数组中的第一个数组,然后将这些元素插入其中:

array[0].append("123")
array[0].append("ok")

你可以通过这种方式达到同样的目标:

array[0] += ["123", "ok"]