일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- decode
- 100 days of SwiftUI
- 프로세스 스케줄링
- 앨런
- Linked List
- core data
- Swift
- 운영체제
- IOS
- 알고리즘
- 가상 메모리
- deadlock
- COLOR
- 비동기
- async
- @state
- SwiftUI
- 동시성
- Codable
- UserDefaults
- 데드락
- 오브젝트
- Apple Developer Academy
- scrollview
- Algorithm
- forEach
- struct
- 인프런
- 상호배제
- 동기화
Archives
- Today
- Total
목록ImagePaint (1)
기어가더라도 제대로
[SwiftUI-기초] ImagePaint - 이미지를 배경색처럼 사용하기
이미지를 배경처럼 사용하면 장점이 반복되는 무늬를 입맛에 맞게 넣을 수 있다는 장점이 있음 Text("Hello World") .frame(width: 300, height: 300) .background(Image("Example")) 이렇게 사용할 수도 있는데 테두리에 사진을 반복되게 넣으려면 어떻게 하면 좋을까? Text("Hello World") .frame(width: 300, height: 300) .border(Image("Example"), width: 30) 위 코드는 작동하지 않음 테두리에 이미지를 넣는 개념을 구현하기 위해 ImagePaint 가 있음 Text("Hello World") .frame(width: 300, height: 300) .border(ImagePaint(imag..
SwiftUI - 기초
2022. 11. 17. 21:42