8wDlpd.png
8wDFp9.png
8wDEOx.png
8wDMfH.png
8wDKte.png

错误更改标题颜色 Swift | Sendbird

vignesh 2月前

20 0

我正在尝试将我的 swift ui 项目中自定义 sendbird 导航栏上的标题颜色从黑色更改为白色,但尝试了所有方法后仍无法完成。我不知道这是不是...

我正在尝试将我的 swift ui 项目中自定义 sendbird 导航栏上的标题颜色从黑色更改为白色,但尝试了所有方法后还是无法完成。我不知道这是否是我覆盖代码片段的问题。非常感谢您的帮助,谢谢!

 class CustomViewController: UIViewController {
            var userId: String?
            var hostId: String?
            
            ...
            
            override func viewDidLoad() {
                super.viewDidLoad()
                // Add the channel list view controller as a child
                addChild(channelListVC)
                view.addSubview(channelListVC.view)
                channelListVC.view.frame = view.bounds
                channelListVC.didMove(toParent: self)
                title = "Messages"
                
                let skyBlueUIColor1 = UIColor(skyBlueColor.skyBlue)
                // Hide the back button
                navigationItem.hidesBackButton = true
                NotificationCenter.default.addObserver(self, selector: #selector(handleNewChannel(_:)), name: NSNotification.Name("NewChannelCreated"), object: nil)
                
                
                if let navigationBar = navigationController?.navigationBar {
                    let appearance = UINavigationBarAppearance()
                    appearance.configureWithOpaqueBackground()
                    appearance.backgroundColor = skyBlueUIColor1
                    appearance.titleTextAttributes = [.foregroundColor: UIColor.white]
                    appearance.largeTitleTextAttributes = [.foregroundColor: UIColor.white]

                    navigationBar.standardAppearance = appearance
                    navigationBar.scrollEdgeAppearance = appearance
                    navigationBar.compactAppearance = appearance

                    navigationBar.tintColor = .white
                }

                // Enable large titles
                navigationController?.navigationBar.prefersLargeTitles = true
                navigationController?.navigationBar.titleTextAttributes = [NSAttributedString.Key.foregroundColor: UIColor.white]
            }

我尝试了很多不同的方法来解决这个奇怪的问题,但仍然无法解决。 使用自定义导航栏发送用户消息

帖子版权声明 1、本帖标题:错误更改标题颜色 Swift | Sendbird
    本站网址:http://xjnalaquan.com/
2、本网站的资源部分来源于网络,如有侵权,请联系站长进行删除处理。
3、会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。
4、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
5、站长邮箱:yeweds@126.com 除非注明,本帖由vignesh在本站《swift》版块原创发布, 转载请注明出处!
最新回复 (0)
返回
作者最近主题: