iOS15λ‘ λμ΄μ€λ©΄μ.,,, λ€λΉκ²μ΄μ λ°λ νλ°κ° μλ λ·°μμ νλ©΄ μ νμ λ리면 λ°°κ²½μ΄ ν¬λͺ ν΄μ§κ³ border lineμ΄ μ¬λΌμ§λλ‘ λ³κ²½λμλ€. μ¬μ€ μ΄μλ μλγ·γ ;; λ΄ μκ°λλ‘ μ λλ©΄ μ΄μμ. γ γ
κ΄λ ¨ ν¬λΌ: https://developer.apple.com/forums/thread/682420
barTintColor not working in iOS 15 | Apple Developer Forums
In iOS 15, UIKit has extended the usage of the scrollEdgeAppearance, which by default produces a transparent background, to all navigation bars. The background is controlled by when your scroll view scrolls content behind the navigation bar. Your screensho
developer.apple.com
![]() |
![]() |
μΌμͺ½ μ¬μ§μμ μ€λ₯Έμͺ½ μ¬μ§ λ·°λ‘ μ΄λν 건λ°,, μμλλ° μμ΄μ‘μ΄μ!
첨μ λ²κ·ΈμΈ μ€ μκ³ νλ° μ μ©λ κΈ°λ³Έμ± μ°Ύμ보λκΉ λ€ μ΄λ κ² λ³κ²½λμλλΌ,,
ν΄κ²° μ°Έκ³ μ½λ : https://stackoverflow.com/questions/69111478/ios-15-navigation-bar-transparent
iOS 15 Navigation Bar Transparent
My iOS app uses the storyboard for the UI and uses a custom tint for the background color of the navigation bar. I have tested my app on the Xcode 13 beta 5 and the navigation bar is "white&qu...
stackoverflow.com
ν΄κ²° μ°Έκ³ μ½λ μ λ§ν¬μμλ λ€λΉκ²μ΄μ λ° λμμ΄μκ³ , λλ μλ μ½λλ‘ Tabbarμμ λμ μλ£~! μ~~~~ μ€νμ€λ²νλ‘μ° μ§±~!
if #available(iOS 15, *) {
let appearance = UITabBarAppearance()
let tabBar = UITabBar()
appearance.configureWithOpaqueBackground()
appearance.backgroundColor = UIColor(named: "λΉμ μμκΉμλ£μΌμ
μ")!
tabBar.standardAppearance = appearance;
UITabBar.appearance().scrollEdgeAppearance = appearance
}
μ μ½λλ₯Ό AppDelegate.Swift λ΄
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool ν¨μμ λ£μΌλ©΄ λλ€~~~ μ λ¬Όλ‘ return μμ μ무λ°λ~~~

