作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将一个带有不同字体大小的单词的属性字符串设置为导航项的属性标题,该导航项是导航栏的一部分,属性 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
最佳答案
除非你破解 View 层次结构,否则你无法使用公共(public) api 来完成。
关于ios - 当 PreferredLargeTitles 为 true 时自定义 NavigatioItem TitleView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52873263/
我想将一个带有不同字体大小的单词的属性字符串设置为导航项的属性标题,该导航项是导航栏的一部分,属性 prefersLargeTitles 设置为 true。 我尝试将自定义 View 分配给导航项的属
我是一名优秀的程序员,十分优秀!