일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Codable
- 알고리즘
- Linked List
- 인프런
- 상호배제
- Swift
- 운영체제
- 오브젝트
- UserDefaults
- @state
- COLOR
- 비동기
- 동시성
- IOS
- Apple Developer Academy
- decode
- 앨런
- 가상 메모리
- struct
- 100 days of SwiftUI
- 프로세스 스케줄링
- forEach
- 동기화
- deadlock
- SwiftUI
- async
- scrollview
- 데드락
- Algorithm
- core data
Archives
- Today
- Total
목록closeSubpath() (1)
기어가더라도 제대로
[SwiftUI-기초] path
그림을 그리는데 기초가 되는 선을 만들어 봅시다. Path 는 Color, gradients, shapes 와 마찬가지로 View SwiftUI 에서 Path 는 클로저로 선언 Path 자체에도 shape(squares, circles, arcs, lines) 같은 것을 만드는 메서드가 있음 기본 원리는 "기준점"에서 path 를 추가하는 원리 Path { path in path.move(to: CGPoint(x: 200, y: 100)) path.addLine(to: CGPoint(x: 100, y: 300)) path.addLine(to: CGPoint(x: 300, y: 300)) path.addLine(to: CGPoint(x: 200, y: 100)) } path.move: 기준점을 선언 pat..
SwiftUI - 기초
2022. 11. 14. 09:29