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
- Protocol
- Xcode
- clean architecture
- UITextView
- swift documentation
- MVVM
- 리펙터링
- 리팩토링
- ios
- Observable
- RxCocoa
- Refactoring
- uiscrollview
- Human interface guide
- 클린 코드
- SWIFT
- combine
- rxswift
- 스위프트
- ribs
- collectionview
- uitableview
- 리펙토링
- Clean Code
- HIG
- UICollectionView
- tableView
- map
- 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