Sample code for 30+ languages & platforms
Swift

Example: JsonObject.NewObjectOf method

Demonstrates the NewObjectOf method.

Chilkat Swift Downloads

Swift

func chilkatTest() {
    var success: Bool = false

    var car: String? = "{\"make\":\"Toyota\",\"model\":\"Camry\",\"year\":2022,\"color\":\"silver\",\"engine\":{\"type\":\"inline-4\",\"fuel\":\"gasoline\",\"horsepower\":203},\"features\":[\"bluetooth\",\"backup camera\",\"adaptive cruise control\",\"lane assist\"],\"isElectric\":false}"

    let json = CkoJsonObject()!

    json.updateString(jsonPath: "test", value: "abc")

    success = json.new(of: "car", jObj: car)
    if success == false {
        print("\(json.lastErrorText!)")
        return
    }

    json.emitCompact = false
    print("\(json.emit()!)")

    // Result:

    // {
    //   "test": "abc",
    //   "car": {
    //     "make": "Toyota",
    //     "model": "Camry",
    //     "year": 2022,
    //     "color": "silver",
    //     "engine": {
    //       "type": "inline-4",
    //       "fuel": "gasoline",
    //       "horsepower": 203
    //     },
    //     "features": [
    //       "bluetooth",
    //       "backup camera",
    //       "adaptive cruise control",
    //       "lane assist"
    //     ],
    //     "isElectric": false
    //   }
    // }

}