Notice
Recent Posts
Recent Comments
Link
투케이2K
149. (ios/swift) SwiftyJSON 라이브러리 사용해 json 생성 및 파싱 수행 실시 본문
[개발 환경 설정]
개발 툴 : XCODE
개발 언어 : SWIFT
[방법 설명]
[소스 코드]
// MARK: - [테스트 함수]
func testMain(){
print("")
print("====================================")
print("[\(self.ACTIVITY_NAME) >> testMain() :: 테스트 함수 수행 실시]")
print("====================================")
print("")
/*
// -----------------------------------------
[요약 설명]
// -----------------------------------------
1. SwiftyJSON : json 데이터를 간편하게 조작할 수 있는 라이브러리입니다
// -----------------------------------------
2. 설치 git 주소 : https://github.com/SwiftyJSON/SwiftyJSON
// -----------------------------------------
3. 필요 import : import SwiftyJSON
// -----------------------------------------
*/
// [json 데이터 생성 실시]
var createJson = JSON(["name":"twok", "age": 29])
createJson["sex"] = true
print("")
print("====================================")
print("createJson :: \(createJson)")
print("type of :: \(type(of: createJson))")
print("====================================")
print("")
// [json 데이터 파싱 실시]
let parsingJson = JSON(createJson)
print("")
print("====================================")
print("parsing [name] :: \(parsingJson["name"])")
print("parsing [age] :: \(parsingJson["age"])")
print("parsing [sex] :: \(parsingJson["sex"])")
print("====================================")
print("")
}
[결과 출력]
반응형
'IOS' 카테고리의 다른 글
151. (ios/swift) nuke 누크 라이브러리 사용해 이미지 로드 수행 실시 (0) | 2022.05.15 |
---|---|
150. (ios/swift) 웹뷰 (webview) 에서 html 파일 경로 설정 및 로드 방법 (0) | 2022.05.10 |
148. (ios/swift) 맥북 M1 arm 개발 환경 코코아팟 (cocoapods) 설치 방법 (0) | 2022.04.28 |
147. (ios/swift) http 접속을 수행하기 위해 info plist 권한 설정 실시 - App Transport Security Settings (0) | 2022.04.13 |
146. (ios/swift) [간단 설명] App Store 앱 스토어 사용해 xcode 개발 환경 구축 및 프로젝트 생성 방법 (0) | 2022.04.13 |
Comments