전체 글 (127) 썸네일형 리스트형 [Swift] 변수와 text 문구 표시 및 Bool일때 import SwiftUI struct Variable: View { let name = "nawon" var body: some View { VStack { Text(name) Text(name) Text("hello, \(name)") } } } #Preview { Variable() } import SwiftUI struct Variable: View { let name = "nawon" let age:Int = 20 let hasJob: Bool = true var body: some View { VStack { Text(name) Text(name) Text("hello, \(name) \(age) \(hasJob.description)") } } } #Preview { Variable() } .. [Swift] xcode 와 SF Symbols 설치 1. xcode 설치 https://developer.apple.com/download/applications/ 2. SF Symbols 설치 https://developer.apple.com/sf-symbols/ SF Symbols - Apple Developer With over 5,000 symbols, SF Symbols is a library of iconography designed to integrate seamlessly with San Francisco, the system font for Apple platforms. developer.apple.com [Java] 접근 제어 지정자 같은 클래스 같은 패키지 자식 클래스 전체 public O O O O protected O O O X default O O X X private O X X X 이전 1 2 3 4 5 6 ··· 43 다음