gpt4 book ai didi

ios - 导航自定义 titleView 不再仅在 iOS 11 上可见

转载 作者:可可西里 更新时间:2023-11-01 05:40:00 26 4
gpt4 key购买 nike

我有一个自定义 View 作为搜索栏并将其设置为 Navigation titleView。 CustomView 不再单独在 iOS 11 设备上可见。我使用 Hierarchy View 进行调试,发现自定义 View 的框架大小为 (0,0)。

此问题仅发生在 iOS 11 上,它在 iOS 9 和 10 上运行良好。

UIView *searchBarView = [self createSearchBarView];  // Custom searchBarView
self.navigationItem.titleView = searchBarView;
searchBarView.autoresizingMask = UIViewAutoresizingFlexibleWidth;

如何在 iOS 11 上添加自定义 View 作为 Navigation 的 titleView?

最佳答案

在您的自定义 UIView 中重写下面的方法

override var intrinsicContentSize: CGSize {
return UILayoutFittingExpandedSize
}

检查并告诉我它是否适合您?

关于ios - 导航自定义 titleView 不再仅在 iOS 11 上可见,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46728040/

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