Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- tableView
- 리팩토링
- Xcode
- UITextView
- Refactoring
- swiftUI
- Observable
- 리펙터링
- 스위프트
- combine
- RxCocoa
- ribs
- UICollectionView
- 애니메이션
- MVVM
- ios
- swift documentation
- SWIFT
- uiscrollview
- map
- clean architecture
- 리펙토링
- HIG
- Human interface guide
- collectionview
- 클린 코드
- Protocol
- uitableview
- Clean Code
- rxswift
Archives
- Today
- Total
목록kerning (1)
김종권의 iOS 앱 개발 알아가기
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/8CrD1/btrH75q5AjP/Zyg7yqah1vUI461shrrDZk/img.png)
목차) SwiftUI의 기본 - 목차 링크 Text Text()로 사용 struct ContentView: View { var body: some View { Text("text") } } underline, strikethough, baselineOffset struct ContentView: View { var body: some View { VStack { Text("text1") Text("underline") .underline() Text("strikethrough") .strikethrough() Text("base line ofset(30)") .baselineOffset(30) } } } kerning과 tracking kerning은 문자간의 offset을 조절 tracking은 후행 ..
iOS 기본 (SwiftUI)
2022. 7. 30. 23:57