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 | 29 | 30 | 31 |
Tags
- uitableview
- collectionview
- 리펙터링
- Protocol
- 스위프트
- ribs
- HIG
- Observable
- clean architecture
- swift documentation
- Human interface guide
- swiftUI
- 애니메이션
- uiscrollview
- SWIFT
- UICollectionView
- Xcode
- 클린 코드
- rxswift
- ios
- combine
- tableView
- MVVM
- Clean Code
- UITextView
- Refactoring
- 리팩토링
- RxCocoa
- map
- 리펙토링
Archives
- Today
- Total
목록toolbarItemGroup (1)
김종권의 iOS 앱 개발 알아가기
[iOS - SwiftUI] 튜토리얼 - 11. toolbar, ToolbarItemGroup, sheet 사용 방법
toolbar TabBar와의 차이점 TabBar: 현재 컨텍스트와 연관되지 않은 화면이동 ToolBar: 현재 컨텍스트와 관련된 항목 추가, 삭제, 주석 추가, 사진 촬영과 같은 일 * toolbar의 Human Interface guide 관련 구체적인 내용은 이전 포스팅 글 참고 toolbar를 사용하기 위해 네비게이션 뷰로 이루어진 뷰 준비 import SwiftUI struct ContentView: View { var body: some View { NavigationView { VStack { Text("Toolbar 예제") .padding() } .navigationTitle("타이틀") } } } toolbar를 추가할땐 navigationTitle을 추가하듯이 바로 밑에다 .toolb..
iOS 튜토리얼 (SwiftUI)
2022. 7. 13. 01:28