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
- collectionview
- Protocol
- tableView
- ios
- Clean Code
- HIG
- combine
- uiscrollview
- UICollectionView
- RxCocoa
- ribs
- Human interface guide
- map
- uitableview
- clean architecture
- rxswift
- UITextView
- 리펙토링
- Xcode
- 리팩토링
- Observable
- 리펙터링
- SWIFT
- 클린 코드
- 애니메이션
- swift documentation
- 스위프트
- Refactoring
- MVVM
- swiftUI
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] Navigation Bar(네비게이션 바) large title 설정 방법 본문
Navigation Bar의 large title 설정
- Human Interface Guideline에 따라서 title를 강조할땐 크기와 위치설정이 필요: https://ios-development.tistory.com/502
- title 변화: 스크롤을 내릴 경우, 네비게이션 바의 중앙으로 이동 (ex - 애플의 음악 앱)
설정 방법
- NavigationController의 NavigationBar 클릭 -> Prefers Large Titles 체크
- 코드에서 설정
navigationController?.navigationBar.prefersLargeTitles = true
- 다시 title을 중앙으로 이동
navigationItem.largeTitleDisplayMode = .never
ex) 버튼을 탭할 때 title이 중앙으로 이동
@IBAction func tapButton(_ sender: Any) {
self.navigationItem.largeTitleDisplayMode = .never
}
- 다시 크게 보이게 하고 싶은 경우
navigationItem.largeTitleDisplayMode = .always
'iOS 응용 (swift)' 카테고리의 다른 글
Comments