UIViewController
SwiftUI ビューでカスタムを使用しようとしています。メソッド内にUIViewControllerRepresentable
を作成するクラスを設定しました。これにより が作成され、ボタンが表示されますが、 はスペースを占有しません。UIViewController
makeUIViewController
UIViewController
UIViewControllerRepresentable
カスタム コントローラーの代わりに を使用してみましたUIImagePickerController
が、そのサイズは正しく表示されます。コントローラーにスペースを占有させる唯一の方法は、SwiftUI ビューで固定フレームを設定するUIViewControllerRepresentable
ことでした。これは絶対にやりたくないことです。
注: SwiftUI でUIViewController
a を実装しようとしているので、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 の知識不足に関連している可能性が非常に高いです。
前もって感謝します!
編集:
のコードは次のとおりですEntityViewItem
。ClientView
- にあるコンテナー ビューも提供します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()
}
}
}
}