gpt4 book ai didi

iOS 导航颜色与 View 颜色不匹配

转载 作者:行者123 更新时间:2023-12-01 17:30:26 26 4
gpt4 key购买 nike

enter image description here

// set the navigation style
self.navigationController?.navigationBar.barTintColor = UIColor(red: 29.0/255.0, green: 202.0/255.0, blue: 255.0/255.0, alpha: 1)
self.navigationController?.navigationBar.barStyle = UIBarStyle.Black

// set the cancel button color to white
cancel.tintColor = UIColor.whiteColor()

// tweet and chars left (140) to white
tweet.tintColor = UIColor.whiteColor()
charsLeftLabel.textColor = UIColor.whiteColor()

// set the color of the view containing the above two buttons to the same color as the navigation
view.backgroundColor = UIColor(red: 29.0/255.0, green: 202.0/255.0, blue: 255.0/255.0, alpha: 1)

尽管我使用相同的 UI 颜色阴影,但导航中的 View 和导航本身有两种不同的阴影

为什么会这样?

最佳答案

只需尝试使用以下代码

[self.view setBackgroundColor:[UIColor clearColor]];

代替
view.backgroundColor = UIColor(red: 29.0/255.0, green: 202.0/255.0, blue: 255.0/255.0, alpha: 1)

甚至 View 背景中的 RGB 值也是 40、197、251,而您的导航栏有 69、209、255

关于iOS 导航颜色与 View 颜色不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26395988/

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