A view that adds a contextual menu to this view.
あるビュー、それはあるコンテキスト(文脈)によるメニューをこのビューに加えたものです。
Parameters
パラメータ
contextMenu
A context menu container for views that you present as menu items in a contextual menu.
いくつかのビューに対するあるコンテキストメニューコンテナ、それらはあなたがいくつかのメニュー項目としてあるコンテキストによるメニューの中に提示するものです。
Discussion
議論
Use contextMenu(_:) to attach a contextual menu struct and its children to the view. This modifier allows for the contextual menu to be conditionally available by passing nil as the value for contextMenu.contextMenu(_:)を使って、コンテキストメニューstructおよびそれの子らをビューに添付してください。この修飾子は、そのコンテキストメニューが条件つきで利用可能とされるのを見越しておきます、nilをcontextMenuに対する値として渡すことによって。
In the example below a ContextMenu that contains four menu items is created and is passed into the contextMenu(_:) modifier. The attachment of context menu is controlled by the Boolean value shouldShowMenu which is true, enabling the contextual menu.
下の例において4つのメニュー項目を含むContextMenuは、作成されて、そしてcontextMenu(_:)修飾子へと渡されます。コンテキストメニューの添付は、ブール値shouldShowMenuによって制御され、それはtrueであり、コンテキストによるメニューを許可しています。
Note that the actions invoked by the menu selection could be coded directly inside the button closures or, as shown below, invoked via function references.
メニュー選択によって発動されるアクションは、直接にボタンクロージャ内部でコード化されるまたは、下で示されるように、関数参照を経由して発動されることができることに注意してください。
A container for views that you present as menu items in a contextual menu after completion of the standard system gesture.
あなたがメニュー項目それらとして、あるコンテキストメニューの中に、標準システムジェスチャの完了の後に、提示するビューそれらに対するあるコンテナ。