Class

NSHostingController

An AppKit view controller that hosts SwiftUI view hierarchy. あるAppKitビューコントローラ、それはSwiftUIビュー階層をホストします。

Declaration 宣言

class NSHostingController<Content> where Content : View

Overview 概要

Create an NSHostingController object when you want to integrate SwiftUI views into an AppKit view hierarchy. At creation time, specify the SwiftUI view you want to use as the root view for this view controller; you can change that view later using the rootView property. Use the hosting controller like you would any other view controller, by presenting it or embedding it as a child view controller in your interface. ホスティングコントローラを、あなたが何か他のビューコントローラでするように使ってください、それを提示することまたはそれをあなたのインターフェイスの中の子ビューコトンローラとして埋め込むことによって。

Topics 話題

Creating a Hosting Controller Object ホスティングコントローラオブジェクトを作成する

Getting the Root View ルートビューを取得する

Configuring the Interface Appearance インターフェイス外観を構成設定する

See Also 参照

SwiftUI Views in AppKit