Documentation Archive

Developer

Accessibility Programming Guide for OS X

On This Page

Implementing Accessibility for Custom Controls

At its most basic, implementing accessibility for custom controls is as simple as adopting a protocol and then implementing any missing methods. The real challenge comes when you want to modify the control’s behavior beyond what is provided by the protocol or when you are working with specialized controls—for example, controls that are not backed by a view.

Adopting a Role-Specific Protocol

The first step in implementing accessibility is to identify the role-specific protocol that best matches your control’s intended behavior. For example, if your control is something that triggers actions when the user clicks on it, it should probably adopt the NSAccessibilityButton protocol.

The accessibility API provides 18 role-specific protocols. These protocols represent the most common control types found in apps. For more information about a particular protocol, see that protocol’s reference documentation.

After you have selected an appropriate protocol, adopt that protocol. Xcode then warn you about any missing methods. Simply implement these methods, and your control is ready to use.

The methods in these protocols represent the minimum required to act according to the specified role. If your control’s intended use closely matches the role, this may be all you need. However, you can further customize your control’s behavior both by implementing additional accessibility methods and properties, and by sending notifications to the accessibility client.

Customizing the Role

The NSAccessibility protocol declares all the information properties and action methods used by the accessibility API. Your control can freely adopt any of these methods or properties. You don’t need to adopt the NSAccessibility protocol—in fact, you generally shouldn’t adopt this protocol. Accessibility clients automatically detect and use any of these methods as soon as they are available.

In particular, the role-specific protocols often require an information property’s getter method, but not its setter method. If you just implement the getter method, accessibility clients are granted read-only access to the data. If you implement both the getter and the setter, accessibility clients are granted read-write access. This allows users to modify the property’s value using an accessibility client.

For controls that store values, you often want to implement both the accessibilityValue and the setAccessibilityValue: accessor methods. Implementing setAccessibilityValue: lets users modify the control’s value through an accessibility client.

Additionally, if your control doesn’t quite fit any of the roles, pick the role that most-closely represents your control’s intended use, and then add other information properties and action methods needed to flesh out its desired abilities and behaviors.

Notifying the Accessibility Client

After you adopt a role-specific protocol, Xcode’s compiler warnings lead you through the process of implementing the required information properties and action methods. However, it does not help with notifications. Controls often need to alert the accessibility clients to changes. For example, if your control’s value changes, you need to send a NSAccessibilityValueChangedNotification notification.

These notifications do not use the standard NSNotification system. Instead, these notifications are sent to the accessibility client’s process using the NSAccessibilityPostNotification method. Review the complete list of notifications listed in NSAccessibility Protocol Reference, and make sure you are posting any relevant notifications as your control’s state changes.

For more information on accessibility notifications, see AXUIElement.h Reference.

Controls Without Views

The previous discussion assumes that your control inherits from NSView or one of the standard AppKit controls. In some cases, however, your controls may simply be visual elements that are drawn and managed by their containing view. If you want to make accessibility clients aware of—and able to interact with—these controls, you must create a custom NSAccessibilityElement subclass to represent them.

To work properly, you must do the following: