일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- apple intelligence
- IOS
- 앱 인텐트
- Llama
- Ventura
- MAC
- finetuning
- swift
- persona
- OSX
- FastAPI
- error outputting keys and certificates
- AI
- langchain
- Homomorphic Encryption
- Security as a Service
- app intents
- apache
- LLM
- HTTP
- Xcode
- ollama
- php
- SwiftUI
- 동형 암호
- VirtualBox
- 정보관리기술사
- pipelines
- provisioning file path
- 애플인텔리전스
- Today
- Total
목록Developer/Swift UI (3)
Project Jo

WWDC 강의를 참고하여 데이터 흐름에 관하여 정리를 하려 한다. https://developer.apple.com/videos/play/wwdc2019/226 Data Flow Through SwiftUI - WWDC 2019 - Videos - Apple Developer SwiftUI was built from the ground up to let you write beautiful and correct user interfaces free of inconsistencies. Learn how to connect... developer.apple.com 강의에서 중요한건 @Binding @State @Environment, BindableObject, Property 이다. 부족하지만 내가 이해한 ..

Swift UI 를 처음 시작하다보니 기초적인 부분도 막히는것 같다. 따라서 공부하다 기본적인 기술이라 판단되는 부분은 이곳에 차곡차곡 적어 놓도록 하겠다. (나중에 길어지면 그때 분리를 하도록 하겠다.) 1. HStack, VStack, ZStack Swift UI 가 뭔가 Android 를 따라한건지... HStack은 가로, VStack 세로, ZStack은 View 우선순위 이다. VStack { Text("Hello, World!") Text("Hello, World!") Text("Hello, World!") Text("Hello, World!") } HStack { Text("Hello, World!") Text("Hello, World!") Text("Hello, World!") } ZSt..

스위프트 UI 를 이제 차근히 공부해 보기로 하였다. WWDC 강의를 참고하여 첫번째 앱을 만들어 본다. URL : https://developer.apple.com/videos/play/wwdc2019/204 Introducing SwiftUI: Building Your First App - WWDC 2019 - Videos - Apple Developer See SwiftUI in action! Watch as engineers from the SwiftUI team build a fully-functioning app from scratch. Understand the philosophy... developer.apple.com 이후부터 작성하는 예제 프로젝트는 깃허브에도 추가되니 참고하면 좋다. ..