25

我有一个自定义UIViewControllerRepresentable(与布局相关的代码如下所示)。这试图复制本机 SwiftUI ScrollView,除了它从底部滚动,除了顶部。

查看层次结构

view: UIView
|
\- scrollView: UIScrollView
   |
   \- innerView: UIView
      |
      \- hostingController.view: SwiftUI hosting view

当视图初始化时,这一切都按预期工作。宿主视图填充了它的内容,并且约束确保滚动视图的contentSize设置正确。

但是,当托管视图的内容发生更改时,hostingController.view不会调整大小以适应其内容。

Xcode 中从应用程序捕获的 UI 屏幕截图。 显示宿主控制器的内容在宿主视图本身的边界之后扩展,而没有正确调整大小。

绿色:正如预期的那样,滚动视图与宿主视图控制器的大小相匹配。

蓝色:托管视图本身。它保持第一次加载时的大小,并且不会按应有的方式扩展。

红色:托管视图中的堆栈视图。在此屏幕截图中,内容被添加到堆栈中,使其扩展。结果,您可以看到大小的差异。

UIHostingController(蓝色)应该扩展以适应其内容(红色)。

滚动视图的内容大小没有明确设置,因为这是由自动布局处理的。

如果有帮助,约束代码如下所示。

class UIBottomScrollViewController<Content: View>: UIViewController, UIScrollViewDelegate {
    var hostingController: UIHostingController<Content>! = nil

    init(rootView: Content) {
        self.hostingController = UIHostingController<Content>(rootView: rootView)
        super.init(nibName: nil, bundle: nil)
    }
    required init?(coder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }

    var scrollView: UIScrollView = UIScrollView()
    var innerView = UIView()

    override func loadView() {
        self.view = UIView()
        self.addChild(hostingController)
        view.addSubview(scrollView)
        scrollView.addSubview(innerView)
        innerView.addSubview(hostingController.view)

        scrollView.delegate = self
        scrollView.scrollsToTop = true
        scrollView.isScrollEnabled = true
        scrollView.clipsToBounds = false

        scrollView.layoutMargins = .zero
        scrollView.preservesSuperviewLayoutMargins = true

        scrollView.leftAnchor.constraint(equalTo: view.leftAnchor).isActive = true
        scrollView.rightAnchor.constraint(equalTo: view.rightAnchor).isActive = true
        scrollView.topAnchor.constraint(equalTo: view.topAnchor).isActive = true
        scrollView.bottomAnchor.constraint(equalTo: view.bottomAnchor).isActive = true

        innerView.topAnchor.constraint(equalTo: scrollView.topAnchor).isActive = true
        innerView.leftAnchor.constraint(equalTo: view.leftAnchor).isActive = true
        innerView.rightAnchor.constraint(equalTo: view.rightAnchor).isActive = true
        innerView.leftAnchor.constraint(equalTo: scrollView.leftAnchor).isActive = true
        innerView.rightAnchor.constraint(equalTo: scrollView.rightAnchor).isActive = true
        innerView.bottomAnchor.constraint(equalTo: scrollView.bottomAnchor).isActive = true


        hostingController.view.topAnchor.constraint(equalTo: innerView.topAnchor).isActive = true
        hostingController.view.leftAnchor.constraint(equalTo: innerView.leftAnchor).isActive = true
        hostingController.view.rightAnchor.constraint(equalTo: innerView.rightAnchor).isActive = true
        hostingController.view.bottomAnchor.constraint(equalTo: innerView.bottomAnchor).isActive = true


        hostingController.view.autoresizingMask = []
        hostingController.view.layoutMargins = .zero
        hostingController.view.insetsLayoutMarginsFromSafeArea = false
        hostingController.view.translatesAutoresizingMaskIntoConstraints = false

        scrollView.autoresizingMask = []
        scrollView.layoutMargins = .zero
        scrollView.insetsLayoutMarginsFromSafeArea = false
        scrollView.translatesAutoresizingMaskIntoConstraints = false

        innerView.autoresizingMask = []
        innerView.layoutMargins = .zero
        innerView.insetsLayoutMarginsFromSafeArea = false
        innerView.translatesAutoresizingMaskIntoConstraints = false

        hostingController.didMove(toParent: self)

        scrollView.keyboardDismissMode = .interactive
    }
}

struct BottomScrollView<Content: View>: UIViewControllerRepresentable {
    var content: () -> Content

    init(@ViewBuilder content: @escaping () -> Content) {
        self.content = content
    }

    func makeUIViewController(context: Context) -> UIBottomScrollViewController<Content> {
        let vc = UIBottomScrollViewController(rootView: self.content())
        return vc
    }
    func updateUIViewController(_ viewController: UIBottomScrollViewController<Content>, context: Context) {
        viewController.hostingController.rootView = self.content()
    }
}
4

5 回答 5

15

对我来说,这个解决方案比我在这里看到的任何其他答案都简单得多(没有一个有效),尽管我花了很长时间才找到它。

我所做的只是创建一个UIHostingController调用invalidateIntrinsicContentSize()其视图的瘦子类以响应viewDidLayoutSubviews()

class SelfSizingHostingController<Content>: UIHostingController<Content> where Content: View {

    override func viewDidLayoutSubviews() {
        super.viewDidLayoutSubviews()
        self.view.invalidateIntrinsicContentSize()
    }
}

与原始问题类似,我有一个 SwiftUI 视图,我在 a UIViewControllerin a 中托管UIScrollView,它需要与滚动内容视图中的其他视图一起布置。SwiftUI 视图的固有大小根据其内容和用户选择的动态类型大小而变化。

就我而言,这真的很简单。它适用于 iOS 14+(未在 iOS 13 上测试),其中 SwiftUI 内容的更改会导致新的内在大小正确更新滚动视图中基于自动布局的 UIKit 布局。老实说,这不是UIHostingController.

于 2021-10-06T04:53:46.070 回答
8

我在涉及和滚动视图的类似视图层次结构中遇到了同样的问题UIHostingController,并发现了一个丑陋的黑客使其工作。基本上,我添加了一个高度约束并手动更新常量:

private var heightConstraint: NSLayoutConstraint?

...

override func viewDidLoad() {
    ...


    heightConstraint = viewHost.view.heightAnchor.constraint(equalToConstant: 0)

    ...
}

override func viewDidLayoutSubviews() {
    super.viewDidLayoutSubviews()

    // 
    viewHost.view.sizeToFit()
    heightConstraint?.constant = viewHost.view.bounds.height
    heightConstraint?.isActive = true
}

这是可怕的代码,但它是我发现的唯一让它工作的东西。

于 2020-06-08T13:32:17.687 回答
7

这与@Rengers 所说的相得益彰,但想包括我的解决方案,这让我花了相当多的时间才弄清楚。

希望节省一些时间

struct SizingView<T: View>: View {
    
    let view: T
    let updateSizeHandler: ((_ size: CGSize) -> Void)
    init(view: T, updateSizeHandler: @escaping (_ size: CGSize) -> Void) {
        self.view = view
        self.updateSizeHandler = updateSizeHandler
    }
    var body: some View {
        view.background(
            GeometryReader { proxy in
                Color.clear
                    .preference(key: SizePreferenceKey.self, value: proxy.size)
            }
        )
        .onPreferenceChange(SizePreferenceKey.self) { preferences in
            updateSizeHandler(preferences)
        }

    }
    
    func size(with view: T, geometry: GeometryProxy) -> T {
        updateSizeHandler?(geometry.size)
        return view
    }
}
于 2020-09-08T22:05:00.760 回答
1

我遇到了同样的问题,没有任何建议对我有用。SwiftUIX然后我在项目中找到了以下类: https ://github.com/SwiftUIX/SwiftUIX/blob/master/Sources/Intermodular/Helpers/UIKit/UIHostingView.swift

这非常有效,除了 SwiftUI 动画仍然有效但看起来与纯 SwiftUI 上下文中的不完全相同。

于 2021-05-12T21:57:23.183 回答
1

我不建议使用SelfSizingHostingController。你可以得到一个自动布局循环(我成功了)。

最好的解决方案是invalidateIntrinsicContentSize()在设置内容后立即调用。像这儿:

hostingController.rootView = content
hostingController.view.invalidateIntrinsicContentSize()
于 2022-01-04T22:37:05.260 回答