티스토리 뷰

iOS

JSON Encoding

성현아빠 2019. 5. 17. 14:31

서버로 원하는 값들을 JSON 데이타로 만들어서 보내야하는데

안드로이드랑은 또 다른 세계가 여기있었네요.

 

하루정도 검색해서 원하는 JSON 데이타로 변환했어요.

 

class로는 방법을 몰라 struct로 변환했네요.

 

struct 선언

    struct Coordinate: Codable

    {

        var latitude: Double

        var longitude: Double

    }

 

예제

        let coordinate: Coordinate = Coordinate(latitude: 0.1, longitude: 0.1)

        

        let encoder = JSONEncoder()

        let jsonData = try? encoder.encode(coordinate)

        if let jsonData = jsonData, let jsonString = String(data: jsonData, encoding: .utf8) {

            print(jsonString)

        }

 

결과

{"longitude":0.10000000000000001,"latitude":0.10000000000000001}

 

출처

https://developer.apple.com/documentation/foundation/archives_and_serialization/encoding_and_decoding_custom_types

'iOS' 카테고리의 다른 글

iPhone 광고ID  (0) 2019.05.21
String to Base64  (0) 2019.05.21
EUC-KR / CP949 문자열 처리 in swift  (0) 2019.05.14
Pushing Updates to Your App Silently  (0) 2019.04.24
다른 뷰 Controller와 데이터 주고받기  (0) 2019.04.04