gpt4 book ai didi

ios - Swift - 带有 tableView 的大型标题转换

转载 作者:可可西里 更新时间:2023-11-01 00:39:08 25 4
gpt4 key购买 nike

我正在尝试编写应用程序的“注册”部分。我为此使用大标题。如果我使用普通的 ViewController,一切都很好,但是如果我使用 TableViewController,当我更改 ViewController 时,我的转换非常糟糕:

enter image description here

我可以看到黑色背景。您知道我该如何纠正这个问题吗?

编辑:如果我设置 isTranslucent = true,没关系,但我想要一个白色的 NavigationBar。你知道怎么做吗?

override func viewDidLoad(){
super.viewDidLoad()
if #available(iOS 11.0, *) {
// tableView.contentInsetAdjustmentBehavior = .never
self.navigationController?.navigationBar.prefersLargeTitles = true
}
self.navigationController?.navigationBar.isTranslucent = false

self.navigationController?.navigationBar.shadowImage = UIImage()
}

@IBAction func continueAction(_ sender: Any) {
let signupSecondVC = self.storyboard?.instantiateViewController(withIdentifier: "SignupSecondViewController") as! SignupSecondViewController
self.navigationController?.pushViewController(signupSecondVC, animated: true)
}

编辑 2:

let img = UIImage(named: "backgroundNav")
navigationController?.navigationBar.setBackgroundImage(img, for: .default)

NavigationBar 仍然是半透明的,即使 imageBackground 是不透明的......

enter image description here

最佳答案

将导航栏的 isTranslucent 设置为 true 并通过其 backgroundImage 控制其颜色.

关于ios - Swift - 带有 tableView 的大型标题转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50453773/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com