[Swift UI] Tutorial 02 - 기본 구조
·
Mac/Swift
developer.apple.com/tutorials/swiftui/creating-and-combining-views Apple Developer Documentation developer.apple.com 1. 새 프로젝트 만들기 2. [프로젝트 이름].swift SwiftUI app life cycle을 사용하는 앱은 앱 프로토콜을 준수하는 구조가 있다. 이 구조의 속성은 하나 이상의 scene을 반환하고, 이 장면은 다시 표시할 내용을 제공한다. @main속성은 앱의 시작점을 식별한다. import SwiftUI @main struct SwiftUI_Tutorial_01App: App { var body: some Scene { WindowGroup { ContentView() } } } 3. C..
[Swift UI] Tutorial 01 - swiftUI vs UIKit
·
Mac/Swift
iOS13이 공개되면서 UI적 변화가 있다고한다. www.hackingwithswift.com/articles/193/whats-new-in-ios-13 What’s new in iOS 13? All the major iOS developer and API changes announced at WWDC19 www.hackingwithswift.com 1. Swift UI 란? Xcode 11버전에서 이른바 swift UI라는 이름으로 새로운 방식의 디자인 인터페이스를 제공한다. 애플은 오랫동안 스토리보드 혹은 프로그래밍적으로 짤 수 있는 UI 방법 두 가지를 제공했다. swift UI는 이 방식을 탈피하여, 나눠지는 화면 경험을 제공한다. 어떻게 레이아웃이 보이고 작동하는지에 대한 새로운 UI 실시간으로..
WONILLISM
'SwiftUI' 태그의 글 목록