https://developer.apple.com/documentation/uikit/uiaccessibilitycustomaction
"A custom action to perform on an accessible object."
접근 가능한 객체에 수행할 수 있는 커스텀 액션입니다.
class UIAccessibilityCustomAction : NSObject
커스텀 액션을 지원하는 앱은 액션의 user-readable 이름과 언제 액션을 수행할지에 대한 객체 및 선택자를 구체화함으로써 이 클래스의 인스턴스를 만들 수 있습니다. 보조 앱은 특정 사용자 큐에 대한 반응으로 커스텀 액션을 표시합니다. 예를 들어 보이스오버는 사용자가 액션 로터를 사용해서 액션에 빠르게 접근할 수 있도록 해줍니다.
이 클래스의 인스턴스를 생성한 후 적합한 접근 가능 객체의 accessibilityCustomActions
속성에 인스턴스를 추가하시기 바랍니다.
After creating an instance of this class, add it to the accessibilityCustomActions property of an appropriate accessible object.
접근성 요소가 특정 액션을 지원하기 위해 사용할 수 있는 메소드의 집합입니다.
https://developer.apple.com/documentation/objectivec/nsobject/uiaccessibilityaction
https://velog.io/@panther222128/UIAccessibilityAction