Return Value 戻り値
A view that adds a contextual menu to this view. あるビュー、それはあるコンテキスト(文脈)によるメニューをこのビューに加えたものです。
Availability 有効性
Technology
A view that adds a contextual menu to this view. あるビュー、それはあるコンテキスト(文脈)によるメニューをこのビューに加えたものです。
menuItems
A context
that contains one or more menu items.
あるcontext
、それは1つ以上のメニュー項目を含みます。
Use contextual menus to add actions that change depending on the user’s current focus and task. コンテキストによるメニューを使って、ユーザのもつ現在の関心事とタスクに依存して変化する様々なアクションを加えてください。
The following example creates a Text
view with a contextual menu. 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.
以下の例は、Text
ビューをあるコンテキストによるメニューで作成します。メニュー選択によって発動されるアクションは、直接にボタンクロージャ内部でコード化されるまたは、下で示されるように、関数参照を経由して発動されることができることに注意してください。
func selectHearts() {
// Act on hearts selection.
}
func selectClubs() { ... }
func selectSpades() { ... }
func selectDiamonds() { ... }
Text("Favorite Card Suit")
.padding()
.contextMenu {
Button("♥️ - Hearts", action: selectHearts)
Button("♣️ - Clubs", action: selectClubs)
Button("♠️ - Spades", action: selectSpades)
Button("♦️ - Diamonds", action: selectDiamonds)
}