• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 自定义导航标题偏移量 ios 11

[复制链接]
菜鸟教程小白 发表于 2022-12-13 02:37:52 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我有一个自定义导航项标题,它只是两个标签,一个在另一个之上,从 .xib 文件加载。

enter image description here

它是通过调用这个来加载的:

class Utilities {
  /// Title and subtitle format custom title in Navigation bar.  Top and bottom text are centered on one another.
  ///
  /// - Parameters:
  ///   - navigationItem: The receiving controller's navigation item.
  ///   - titleText: Top text to be displayed a little larger and more bold.
  ///   - subtitleText: Bottom text to be displayed a little smaller and less bold.
  class func addCustomNavigationTitle(navigationItem: UINavigationItem, titleText: String, subtitleText: String) {
      let customNavigationTitleView =   LabelSubLabelCustomHeaderView.instanceFromNib() as! LabelSubLabelCustomHeaderView
      customNavigationTitleView.titleLabel.text = titleText
      customNavigationTitleView.dateLabel.text = subtitleText
      navigationItem.titleView = customNavigationTitleView
  }
  ...
}

定义如下:

class LabelSubLabelCustomHeaderView: UIView {
  @IBOutlet var titleLabel: UILabel!
  @IBOutlet var dateLabel: UILabel!

  class func instanceFromNib() -> UIView {
      return UINib(nibName: "LabelSubLabelCustomHeaderView", bundle: nil).instantiate(withOwner: nil, options: nil)[0] as! UIView
  }
}

现在,它被精确地下推了 22 个像素,从而隐藏了底部标签。

我必须在 viewDidAppear 中设置该 View 的框架,以便将其设置为直线。我尝试了 viewWillAppear 和其他一些东西。我真的不得不隐藏它,设置它,然后显示它,这显然是不对的。

在 iOS 11 之前,这没有问题。

现在就是这样,没有我的 hack 修复,我希望我能做对:

enter image description here

这是它应该是什么样子,它在 iOS 10 之前的样子,以及它在我的 hack 修复后的样子:

enter image description here

另外请注意,当展开转场动画时, View 会返回到错误的帧,即 22 像素太低。 我该如何解决这个问题?提前感谢您的帮助。

编辑:更详细的约束信息:

View DateLabel

TitleLabel



Best Answer-推荐答案


您应该在自定义 View 标题 Xib 中添加一个布局约束,强制下层标签与 View 安全区域之间的最小距离。有关 iOS 10/11 的完整工作示例,请参阅 https://github.com/ekscrypto/Swift-Tutorial-Custom-Title-View

关于ios - 自定义导航标题偏移量 ios 11,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46332857/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap