1

为了在 SwiftUI 列表中实现向右滑动,我正在尝试使 UIViewControllerRepresentable UITableViewController。
但是,当 displayMode 为 .large 时,它​​与导航栏不兼容。

我想,当滚动移动时,它应该

  1. 调整导航栏的大小。
  2. 调整 Scrollview 或 List 的框架。

#2 不适用于我的表格视图,因此需要做一些事情。我需要你的帮助。

[图片]

在此处输入图像描述

  1. 第一次渲染效果很好。
  2. 滚动后,表格视图上方有多余的空间
  3. 通过点击显示屏顶部滚动到顶部后,位置被破坏。
  4. 滚动后查看层次结构(第一次渲染后修复)

[代码]重现(从xcode创建swiftui项目后,将ContentView.swift的内容替换为下面的代码。)

import SwiftUI

final class TableViewWrapper: UIViewControllerRepresentable {
    func makeUIViewController(context: Context) -> UITableViewController {
        let viewController = UITableViewController()
        viewController.tableView.delegate = context.coordinator
        viewController.tableView.dataSource = context.coordinator

        return viewController
    }

    func updateUIViewController(_ uiViewController: UITableViewController, context: Context) {
        uiViewController.tableView.reloadData()
    }

    func makeCoordinator() -> Coordinator {
        Coordinator()
    }

    class Coordinator: NSObject, UITableViewDataSource, UITableViewDelegate {
        func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
            return 100
        }

        func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
            let cell = UITableViewCell(style: .subtitle, reuseIdentifier: nil)
            cell.backgroundColor = .black
            cell.textLabel!.textColor = .white
            cell.textLabel!.text = "Test"

            return cell
        }
    }
}

struct ContentView: View {
    var body: some View {
        NavigationView {
            TableViewWrapper()
                .navigationBarTitle("Nav title", displayMode: .large)
        }
    }
}
4

1 回答 1

3

我有一个解决方案。

    TableViewWrapper()
        .edgesIgnoringSafeArea(.top)
于 2020-07-12T03:17:58.613 回答