일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- swift
- Homomorphic Encryption
- php
- VirtualBox
- 정보관리기술사
- ObObjective c
- MAC
- URLSession
- error outputting keys and certificates
- URLSessionConfiguration
- BindableObject
- pipelines
- #colorLiteral
- colorLiteral
- Data Flow Through SwiftUI
- apache
- 애플인텔리전스
- Xcode
- apple intelligence
- 동형 암호
- SwiftUI
- HTTP
- AI
- Security as a Service
- EnvironmentObject
- 앱 인텐트
- ObservableObject
- app intents
- provisioning file path
- IOS
- Today
- Total
목록Developer/Swift UI (3)
Project Jo
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/cm9S62/btqGULvjkWA/T2wLkrIKGkj8gXzjcIL0v1/img.png)
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 이다. 부족하지만 내가 이해한 ..
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/c3hWvX/btqF4zIa089/hw1wOmlP2kl3Si36aTgEd1/img.png)
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..
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/lPCSA/btqF3SBcvyK/EL8278H4q9awaHJNndrJxk/img.png)
스위프트 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 이후부터 작성하는 예제 프로젝트는 깃허브에도 추가되니 참고하면 좋다. ..