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 |
Tags
- ScrollView
- mvvm
- 화면전환
- self
- SWIFTUI
- Git
- http
- Animation
- PushNotification
- calendar
- 글또
- escaping
- CoreImage
- SWIFT
- segue
- error
- viewlifecycle
- Refresh
- list
- Switch
- uikit
- Observer
- NotificationCenter
- apns
- singleton
- array
- struct
- 고차함수
- class
- IOS
Archives
- Today
- Total
목록side menu (1)
seong_hye, the developer

📘Side Menu일반적으로 왼쪽(또는 오른쪽)에서 슬라이드되어 나오는 형태의 메뉴 앱의 주요 탐색 기능을 제공UIKit에서는 UISideMenuNavigationController 이용but, SwiftUI에서는 직접 구현 또는 패키지 이용 🔹사이드 메뉴 만들기➡️ Side Menu Case 정리enum SideMenuType: Int, CaseIterable { case home = 0 //case를 숫자로 초기화 case favorite case chat case profile var title: String { switch self { case .home: return "Home" case .favorite: ..
IOS/SwiftUI
2022. 12. 6.