UIAction

Panther·2021년 8월 6일
0
post-custom-banner

https://developer.apple.com/documentation/uikit/uiaction

"A menu element that performs its action in a closure."

클로저에서 가지고 있는 액션을 수행하는 메뉴 요소입니다.

Declaration

@MainActor class UIAction : UIMenuElement

Overview

클로저에서 액션을 수행하는 메뉴 요소를 원한다면 UIAction 객체를 생성하시기 바랍니다. 아래 예시는 파일 메뉴에 액션 기반 메뉴를 추가하는 예시입니다.

// Create a closure-based action to use as a menu element.
let refreshAction = UIAction(title: "Refresh") { (action) in
    print("Refresh the data.")
}

// Use the .displayInline option to avoid displaying the menu as a submenu,
// and to separate it from the other menu elements using a line separator.
let refreshMenuItem = UIMenu(title: "", options: .displayInline, children: [refreshAction])

// Insert the menu into the File menu before the Close menu.
builder.insertSibling(refreshMenuItem, beforeMenu: .close)

See Also


UIMenuElement

메뉴, 액션, 명령을 나타내는 객체입니다.

https://developer.apple.com/documentation/uikit/uimenuelement
https://velog.io/@panther222128/UIMenuElement

UICommand

가지고 있는 액션을 셀렉터에서 수행하는 메뉴 요소입니다.

https://developer.apple.com/documentation/uikit/uicommand
https://velog.io/@panther222128/UICommand

UIKeyCommand

하드웨어 키보드에 대해서 수행되는 키 입력 및 결과 액션을 구체화하는 객체입니다.

https://developer.apple.com/documentation/uikit/uikeycommand
https://velog.io/@panther222128/UIKeyCommand

UIDeferredMenuElement

시스템이 블록의 컴플리션 핸들러 결과로 교체할 수 있는 플레이스홀더 메뉴 요소입니다.

https://developer.apple.com/documentation/uikit/uideferredmenuelement
https://velog.io/@panther222128/UIDeferredMenuElement


post-custom-banner

0개의 댓글