일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ribs
- Human interface guide
- map
- clean architecture
- rxswift
- tableView
- Clean Code
- swiftUI
- 리팩토링
- Refactoring
- combine
- HIG
- 리펙토링
- SWIFT
- 리펙터링
- uiscrollview
- UICollectionView
- Protocol
- Observable
- RxCocoa
- swift documentation
- ios
- 스위프트
- UITextView
- collectionview
- Xcode
- uitableview
- MVVM
- 애니메이션
- 클린 코드
- Today
- Total
목록navigationbar (3)
김종권의 iOS 앱 개발 알아가기
Navigation Bar 사라지게 하는 방법 Contents를 위로 올릴때는 navigationBar를 hidden시키고, 아래로 내릴때는 보이게끔 설정 "hidesBarsOnSwipe" 프로퍼티 사용 navigationController?.hidesBarsOnSwipe = true TabBar 사라지게 하는 방법 Contents를 위로 올릴때는 navigationBar를 hidden시키고, 아래로 내릴때는 보이게끔 설정 ScrollView의 델리게이트 메서드인 `scrollViewWillEndDragging(_:withVelocity:targetContentOffset:)`사용 velocity.y가 음수: Contents를 아래로 내리는 경우 velocity.y가 양수: Contents를 위로 올리는..
apperance() 메소드 네비게이션: UINavigationBar.appearance() 탭바: UITabBar.appearance() AppDelegate에서 전역적으로 세팅 AppAppearance.setupAppearance()으로 접근 final class AppAppearance { static func setupAppearance() { ... } } UINavigationBar.appearance() 배경: UINavigationBar.appearance().backgroundColor = UIColor.darkGray 타이틀 색상: UINavigationBar.appearance().titleTextAttributes = [NSAttributedString.Key.foregroundCo..
NavigationBar의 세가지 색상 tintColor: navigation items들에 적용되는 컬러 (rightBarButtonItem, leftBarButtonItem) backgroundColor: navigationBar의 superView를 의미 barTintColor: navigationBar를 의미 navigationBar의 색상을 변경하고 싶은 경우 barTintColor사용 색상 지정 방법 naviBar.backgroundColor = .systemBackground를 설정해도 navigatinoBar의 색상이 gray가 남은 이유 반투명도가 default로 설정되어 있기 때문 반투명도 제거 naviBar.isTranslucent = false naviBar.backgroundCol..