gpt4 book ai didi

ios - isTranslucent 和 titleTextAttributes 不起作用 ios swift

转载 作者:行者123 更新时间:2023-11-30 11:39:24 24 4
gpt4 key购买 nike

    lazy var navigationBar = UINavigationBar(frame: CGRect(x: 0, y: 20, width: screen_width, height: 44))

navigationBar.barTintColor = highorange
navigationBar.isTranslucent = false
navigationBar.titleTextAttributes = [NSAttributedStringKey.foregroundColor: grayblack]

我初始化了一个导航栏,并且 bartintcolor 正在工作。但 isTranslucent 和 titleText 属性没有改变。

最佳答案

在我的示例中它有效。

关于苹果文档中的 isTranslucent 属性

If you set this property to false on a navigation bar with a translucent custom background image, the navigation bar provides an opaque background for the image using black if the navigation bar has black style, white if the navigation bar has default, or the navigation bar’s barTintColor if a custom value is defined.

当我添加下面的代码时,titleTextAttributes 也可以工作

navigationBar.titleTextAttributes = [NSAttributedStringKey.foregroundColor: UIColor.green]
let item = UINavigationItem(title: "Hello world")
navigationBar.setItems([item], animated: false)

我得到以下结果:

enter image description here

关于ios - isTranslucent 和 titleTextAttributes 不起作用 ios swift,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49415498/

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