gpt4 book ai didi

ios - 导航栏透明swift 5

转载 作者:行者123 更新时间:2023-12-01 16:21:38 24 4
gpt4 key购买 nike

当我更新到 Xcode 11 时,我的所有 NavigationBar 都变得透明( Transparent bar photo )。为什么,更新后我没有更改任何代码?

最佳答案

这是 iOS 13 的新行为,正如它所提到的 here :

In iOS 13 and later, a large title navigation bar doesn’t include a background material or shadow by default.



您仍然可以覆盖此行为:
let appearance = UINavigationBarAppearance()
appearance.backgroundColor = .white
self.navigationController?.navigationBar.scrollEdgeAppearance = appearance

关于ios - 导航栏透明swift 5,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58362015/

24 4 0