gpt4 book ai didi

ios - 当 PreferredLargeTitles 为 true 时自定义 NavigatioItem TitleView

转载 作者:行者123 更新时间:2023-11-28 23:44:25 26 4
gpt4 key购买 nike

我想将一个带有不同字体大小的单词的属性字符串设置为导航项的属性标题,该导航项是导航栏的一部分,属性 prefersLargeTitles 设置为 true。

我尝试将自定义 View 分配给导航项的属性 viewTitle,但 View 的高度始终限制为 44 像素,这是带有大标题的导航栏高度的一半。

是否可以添加一个高度等于导航栏高度的自定义 viewTitle?

self.navigationController?.navigationBar.prefersLargeTitles = true

let attrString = NSMutableAttributedString(string: "Page 1",
attributes: [NSAttributedStringKey.font: UIFont.systemFont(ofSize: 30)]);

attrString.append(NSMutableAttributedString(string: " Chapter 3",
attributes: [NSAttributedStringKey.font: UIFont.systemFont(ofSize: 19)]));

let label = UILabel(frame: CGRect.zero)
label.attributedText = attrString



let frame = CGRect(origin: CGPoint.zero, size: CGSize(width: 256, height: 88))

let titleView = UIView(frame:CGRect.zero)
titleView.addSubview(label)
label.frame = frame

self.navigationItem.titleView = titleView
self.navigationItem.titleView?.frame = frame

enter image description here

最佳答案

除非你破解 View 层次结构,否则你无法使用公共(public) api 来完成。

关于ios - 当 PreferredLargeTitles 为 true 时自定义 NavigatioItem TitleView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52873263/

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