일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Protocol
- String
- optional
- initalizer
- property
- enum
- interpace
- url
- Method
- delegate
- 디자인패턴
- UIKit
- Class
- tuist
- Foundation
- 스위프트
- Unicode
- 코딩테스트
- Xcode
- init
- struct
- initializer
- Swift
- extension
- Terminal
- instance
- Git
- type
- IOS
- 이니셜라이저
Archives
- Today
- Total
목록Shows Navigation Bar (1)
아리의 iOS 탐구생활
[UiKit/iOS] 네비게이션 바 감추는 방법
1️⃣ 스토리보드에서 감추기 네비게이션 컨트롤러를 클릭 후 우측 Inspector에서 Shows Navigation Bar 체크를 해제해준다. 2️⃣ 코드로 감추기 네비게이션 컨트롤러로 Embed In 되어있는 ViewController 내부에 다음과 같은 코드를 추가해준다. self.navigationController?.isNavigationBarHidden = true 위와 같은 방법은 Navigation Controller에 연결되어있는 모든 ViewController의 Navigation Bar가 숨겨진다. 특정 ViewController의 Navigation Bar를 숨기려면 다음과 같은 방법이 있다. 해당 방법은 View Life Cycle 메소드를 활용하여 뷰가 화면에 보일 때 Naviga..
Swift/iOS
2022. 2. 6. 00:49