반응형
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
- Xcode
- SwiftUI
- Operators
- init?
- @Environment
- @Binding
- NullObject
- Creating Operators
- graphql
- subject
- swift6
- NavigationLink
- RFC1738/1808
- RxSwift
- nonisolated
- nestjs
- RxCocoa
- dismiss
- SWIFT
- Operater
- @State
- @EnvironmentObject
- ios14
- vim
- URL(string:)
- typeorm
- init
- Bug
- operator
- IOS
Archives
- Today
- Total
Tunko Development Diary
iOS13,14,15 네비게이션 바 투명 상태 처리 본문
iOS15 업데이트 이후
스토리보드 기반으로 개발된 앱에서 네비게이션 처리가 투명이 되어 겹치는 현상이 발생했다.
아래 코드로 수정 완료.
appDelegate.swiat
application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions
if #available(iOS 13, *) {
let appearance = UINavigationBarAppearance()
appearance.configureWithOpaqueBackground()
//appearance.titleTextAttributes = [.foregroundColor: UIColor.black]
appearance.backgroundColor = UIColor(red: 255/255.0, green: 255/255.0, blue: 255/255.0, alpha: 1.0)
UINavigationBar.appearance().standardAppearance = appearance
UINavigationBar.appearance().scrollEdgeAppearance = appearance
}
반응형
'Development > iOS 개발' 카테고리의 다른 글
Swift ARC [weak self] 란? (0) | 2022.06.15 |
---|---|
xcode 13 vim Editing Mode (0) | 2021.10.13 |
[SwiftUI] NavigationView 와 NavigationLink 정리 (0) | 2021.03.02 |
[SwiftUI] 간단하게 View 라운딩 처리 & 그라데이션 넣기 (0) | 2021.02.28 |
[SwiftUI] List - Header, Footer 추가하기 (0) | 2021.02.26 |
Comments