⭐️ 핵심 강의 내용
- How to decode a JSON file and fetch data
- Create a dynamic List using Generics and JSON data.
- Create video player
- Map with custom Annotations
💡 JSON file 이란?
JavaScript Object Notation
👉JSON Structure
기본 구조
key : value
Object {}
Array []
String ""
Colon :
Comma ,
JSON의 기본 예시
[
{
"name" : seou,
"age" : 22,
"favefood" : [
"kimbap",
"sulbing",
"cake"
]
}
]
❗️How to decode JSON file
CodableBundleExtension file
Video Player
- AVKit 을 사용 : SwiftUI의 Video Player는 기본 멀티 미디어도구(play button, slider)를 가지고 있다.
영상이 바로 재생될 수 있는 함수를 위와 같이 작성
Map with Custom Annotation
'iOS > SwiftUI' 카테고리의 다른 글
[SwiftUI] SwiftUI를 소개합니다. (0) | 2024.04.15 |
---|---|
[SwiftUI] Custom Font 추가와 Font Extension하기 (0) | 2023.11.25 |
[Day 9] 클로저(Closure), passing functions into functions (0) | 2023.08.11 |
[Day 8] 함수의 매개변수에 기본값 제공, throwing functions (0) | 2023.08.07 |
[Day 7] 함수, 매개변수, 반환값 (0) | 2023.08.06 |