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 31 32 import SwiftUI struct ContentView: View { @State private var progress: CGFloat = 0 var body: some View { VStack{ Slider(value: $progress) .padding() ZStack{ Circle() .stroke(Color.gray.opacity(0.3), lineWidth: 20) Circle() .trim(from: 0, to: progress) .stroke(style: StrokeStyle(lineWidth: 20, lineCap: .round, ..
- ContentView 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 import SwiftUI struct ContentView: View { @State var todos = [Todo]() var body: some View { List(todos){ todo in VStack(alignment: .leading){ Text(todo.title!) Text(todo.completed!.description) } }.onAppear { WebAPI().getTodos { todos in self.todos = todos } } } } struct ContentView_Previews: PreviewProvider..

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 31 32 33 34 35 36 37 38 39 40 41 import SwiftUI struct ContentView: View { @State private var myBool = false var body: some View{ NavigationView(content: { VStack{ NavigationLink(destination: DetailView(mainToggleValue: $myBool)) { Text("Navigate") } Toggle(myBool.description, isOn: $myBool) .padding() } }) } } stru..

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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 import SwiftUI struct ContentView: View { @State private var proxy: ScrollViewProxy? @State private var indexID: String = "0" var body: some View{ VStack{ HStack{ Text("Insert Index : ") TextField("", text: $indexID) }.padding() Button("Scroll To #\(indexID)"){ withAni..

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 import SwiftUI struct ContentView: View { @State private var inputText = "" var body: some View{ VStack{ TextEditor(text: $inputText) .padding() .lineSpacing(20) .font(.title) .disableAutocorrection(true) .onChange(of: inputText, perform: { value in if inputText.count > 10 { inputText.removeLast() } }) Text("\(input..

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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 import SwiftUI struct ContentView: View { @State private var isOn = false var body: some View { Toggle("\(isOn.description)", isOn: $isOn) .toggleStyle(CustomToggle()) .frame(width: 200, height: 50) } } struct ContentView_Previews: PreviewProvider { s..

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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 import SwiftUI struct ContentView: View { var body: some View { TabView{ FirstView() .tabItem { Image(systemName: "person") Text("person") } SecondView() .tabItem { Image(systemName: "person.fill") Text("person.fill") } .edgesIgnoringSafeArea(.top) } } } struct FirstView: Vi..

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 31 32 33 34 35 36 37 38 import SwiftUI struct ContentView: View { init(){ let myAppearance = UINavigationBarAppearance() myAppearance.titleTextAttributes = [.foregroundColor : UIColor.blue, .font : UIFont.italicSystemFont(ofSize: 30)] myAppearance.largeTitleTextAttributes = [.foregroundColor : UIColor.purple] myAppe..
- Total
- Today
- Yesterday
- SwiftUI
- ios simulator
- 의존성
- ios
- 단어변환
- dfs
- 전처리기
- BFS
- 메모리 순환참조
- 이분탐색
- 주입
- 링커
- 학교 과제
- Swift
- 프로그래머스
- CLANG
- 면접질문
- 생명 주기
- XCFramework
- 순환참조
- 클린 코드
- 의존관계역전법칙
- 알고리즘
- clean code
- 여행경로
- clean code 정리
- 클린 코드 줄거리
- XcodeBuildSystem
- 클린 코드 정리
- swiftc
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |