1

UIViewControllerSwiftUI ビューでカスタムを使用しようとしています。メソッド内にUIViewControllerRepresentableを作成するクラスを設定しました。これにより が作成され、ボタンが表示されますが、 はスペースを占有しません。UIViewControllermakeUIViewControllerUIViewControllerUIViewControllerRepresentable

カスタム コントローラーの代わりに を使用してみましたUIImagePickerControllerが、そのサイズは正しく表示されます。コントローラーにスペースを占有させる唯一の方法は、SwiftUI ビューで固定フレームを設定するUIViewControllerRepresentableことでした。これは絶対にやりたくないことです。

注: SwiftUI でUIViewControllera を実装しようとしているので、a を使用する必要があります。UIMenuControllerサイズが正しくないというこの問題以外に、すべてが機能するようになりました。

これが私のコードです:

struct ViewControllerRepresentable: UIViewControllerRepresentable {
    func makeUIViewController(context: Context) -> MenuViewController {
        let controller = MenuViewController()
        return controller
    }
    
    func updateUIViewController(_ uiViewController: MenuViewController, context: Context) {
        
    }
}

class MenuViewController: UIViewController {
    override func viewDidLoad() {
        let button = UIButton()
        button.setTitle("Test button", for: .normal)
        button.setTitleColor(.red, for: .normal)
        
        self.view.addSubview(button)
        button.translatesAutoresizingMaskIntoConstraints = false
        button.leadingAnchor.constraint(equalTo: self.view.leadingAnchor).isActive = true
        button.trailingAnchor.constraint(equalTo: self.view.trailingAnchor).isActive = true
        button.topAnchor.constraint(equalTo: self.view.topAnchor).isActive = true
        button.bottomAnchor.constraint(equalTo: self.view.bottomAnchor).isActive = true
    }
}

私のSwiftUIビュー:

struct ClientView: View {
    var body: some View {
        VStack(spacing: 0) {
            EntityViewItem(copyValue: "copy value", label: {
                Text("Name")
            }, content: {
                Text("Random name")
            })
            .border(Color.green)
            
            ViewControllerRepresentable()
                .border(Color.red)
            
            EntityViewItem(copyValue: "copy value", label: {
                Text("Route")
            }, content: {
                HStack(alignment: .center) {
                    Text("Random route name")
                }
            })
            .border(Color.blue)
        }
    }
}

スクリーンショット:

質問のスクリーンショット

私は UIKit の経験があまりありません - 私の唯一の経験は、SwiftUI で使用する UIKit ビューを作成することです。この問題は、私の UIKit の知識不足に関連している可能性が非常に高いです。

前もって感謝します!

編集:

のコードは次のとおりですEntityViewItemClientView- にあるコンテナー ビューも提供しますEntityView

また、残りのコードをクリーンアップし、への参照をEntityハードコードされた値に置き換えました。

struct EntityViewItem<Label: View, Content: View>: View {
    var copyValue: String
    var label: Label
    var content: Content
    var action: (() -> Void)?
    
    init(copyValue: String, @ViewBuilder label: () -> Label, @ViewBuilder content: () -> Content, action: (() -> Void)? = nil) {
        self.copyValue = copyValue
        self.label = label()
        self.content = content()
        self.action = action
    }
    
    var body: some View {
        VStack(alignment: .leading, spacing: 2) {
            label
                .opacity(0.6)
            content
                .onTapGesture {
                    guard let unwrappedAction = action else {
                        return
                    }
                    unwrappedAction()
                }
                .contextMenu {
                    Button(action: {
                        UIPasteboard.general.string = copyValue
                    }) {
                        Text("Copy to clipboard")
                        Image(systemName: "doc.on.doc")
                    }
                }
        }
        .padding([.top, .leading, .trailing])
        .frame(maxWidth: .infinity, alignment: .leading)
    }
}

のコンテナClientView:

struct EntityView: View {
    let headerHeight: CGFloat = 56
    
    var body: some View {
        ZStack {
            ScrollView(showsIndicators: false) {
                VStack(spacing: 0) {
                    Color.clear.frame(
                        height: headerHeight
                    )
                    ClientView()
                }
            }
            VStack(spacing: 0) {
                HStack {
                    Button(action: {
                    }, label: {
                        Text("Back")
                    })
                    Spacer()
                    Text("An entity name")
                        .lineLimit(1)
                        .minimumScaleFactor(0.5)
                    
                    Spacer()
                    Color.clear
                        .frame(width: 24, height: 0)
                }
                .frame(height: headerHeight)
                .padding(.leading)
                .padding(.trailing)
                .background(
                    Color.white
                        .ignoresSafeArea()
                        .opacity(0.95)
                )
                Spacer()
            }
        }
    }
}
4

4 に答える 4

2

@jnpdx が述べたように、VStack で他のビューとネストされているため、表現可能なものを表示するには、フレームを介して明示的なサイズを指定する必要があります。

UIViewController を使用する特定の理由がある場合は、明示的なフレームを提供するか、SwiftUI ビューを作成してください。

struct ClientView: View {
  var body: some View {
    VStack(spacing: 0) {
        EntityViewItem(copyValue: "copy value", label: {
            Text("Name")
        }, content: {
            Text("Random name")
        })
        .border(Color.green)
        
        ViewControllerRepresentable()
            .border(Color.red)
            .frame(height: 100.0)
        
        EntityViewItem(copyValue: "copy value", label: {
            Text("Route")
        }, content: {
            HStack(alignment: .center) {
                Text("Random route name")
            }
        })
        .border(Color.blue)
    }
  }
}
于 2021-04-24T07:52:24.757 に答える
2

助けてくれた@udbhatejaと@jnpdxに感謝します。UIViewControllerRepresentableこれは、 が の内部でフレームを圧縮する理由をよく理解していScrollViewます。に固定の高さを設定するという問題の解決策を見つけましたUIViewControllerRepresentable。基本的にPreferenceKey、SwiftUI ビューの高さを見つけるために を使用し、UIViewControllerRepresentableそれに合わせて のフレームを設定しました。

誰かがこの同じ問題を抱えている場合に備えて、私のコードは次のとおりです。

struct EntityViewItem<Label: View, Content: View>: View {
    var copyValue: String
    var label: Label
    var content: Content
    var action: (() -> Void)?
    
    @State var height: CGFloat = 0
    
    init(copyValue: String, @ViewBuilder label: () -> Label, @ViewBuilder content: () -> Content, action: (() -> Void)? = nil) {
        self.copyValue = copyValue
        self.label = label()
        self.content = content()
        self.action = action
    }
    
    var body: some View {
        ViewControllerRepresentable(copyValue: copyValue) {
            SizingView(height: $height) { // This calculates the height of the SwiftUI view and sets the binding
                VStack(alignment: .leading, spacing: 2) {
                    // Content
                }
                .padding([.leading, .trailing])
                .padding(.top, 10)
                .padding(.bottom, 10)
                .frame(maxWidth: .infinity, alignment: .leading)
            }
        }
        .frame(height: height) // Here I set the height to the value returned from the SizingView
    }
}

そしてのコードSizingView

struct SizingView<T: View>: View {
    
    let view: T
    @Binding var height: CGFloat
    
    init(height: Binding<CGFloat>, @ViewBuilder view: () -> T) {
        self.view = view()
        self._height = height
    }
    var body: some View {
        view.background(
            GeometryReader { proxy in
                Color.clear
                    .preference(key: SizePreferenceKey.self, value: proxy.size)
            }
        )
        .onPreferenceChange(SizePreferenceKey.self) { preferences in
            height = preferences.height
        }

    }
    
    func size(with view: T, geometry: GeometryProxy) -> T {
        height = geometry.size.height
        return view
    }
}

struct SizePreferenceKey: PreferenceKey {
    static var defaultValue: CGSize = .zero

    static func reduce(value: inout CGSize, nextValue: () -> CGSize) {
        value = nextValue()
    }
}

これが完了すると、myUIMenuControllerは完全に機能します。それは大量のコードでした (この機能が SwiftUI に存在する場合、おそらく 5 行のコードを書かなければならなかったでしょう) が、うまく機能します。誰かがコードを希望する場合は、コメントしてください。共有します。

最終製品の画像は次のとおりです。 ここに画像の説明を入力

于 2021-04-24T17:46:16.617 に答える