Popularity
3.9
Stable
Activity
0.0
Stable
258
8
19

Programming language: Swift
License: MIT License
Tags: Accessibility    
Latest version: v1.1.4

Capable alternatives and similar libraries

Based on the "Accessibility" category.
Alternatively, view Capable alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Capable or a related project?

Add another 'Accessibility' Library

README


Awesome Build Status Swift Platforms Cocoapods compatible SPM Carthage compatible codecov Twitter

Accessibility for iOS, macOS, tvOS, and watchOS

What's new in Capable 2.0

Here re the most important changes:

  • ๐Ÿ› New framework architecture that makes contributing support for upcoming accessibility settings easier.
  • ๐ŸŽฏ Focus on unified API for Apple accessibility settings: While support for scalable fonts & handicap grouping was dropped entirely, the APIs for calculating high contrast color pairs based on WCAG 2.1 success criteria has moved to it's own repository WCAG-Colors.
  • โœ… Support for new accessibility APIs.

Research & React

Have you ever thought about improving accessibility within your apps to gain your user base instead of spending a lot of time implementing features no-one really ever asked for? Most of us did, however there has never been an easy way to tell if anyone benefits from that. What if there was a simple way to figure out if there's a real need to support accessibility right now. Or even better, which disability exists most across your user base.

While Apple's accessibility API are different across all platforms and might be located in a variety of system frameworks, Capable offers a unified and centralized API to get the current status of accessibility settings. This info can be sent to your analytics backend to learn, if people with specific handicaps are blocked from doing certain actions within your app. Furthermore, this data will help you to prioritize accessibility work.

Once you've figured out that users with specific handicaps get stuck at a certain stage, you can make use of various Capable APIs to enable/disable accessibility support based on the user's accessibility settings.

Documentation

Capable offers a whole lot of features along with a bunch of configurations. To find more about how to use them inside the [documentation](Documentation/Reference/README.md) section.

Installation

There are currently four different ways to integrate Capable into your apps.

CocoaPods

use_frameworks!

target 'MyApp' do

  # all features + color extensions
  pod 'Capable'

end

Carthage

github "chrs1885/Capable"

Swift Package Manager

dependencies: [
    .package(url: "https://github.com/chrs1885/Capable.git", from: "2.0.0")
]

Manually

Simply drop Capable.xcodeproj into your project. Also make sure to add Capable.framework to your appโ€™s embedded frameworks found in the General tab of your main project.

Usage

Register for (specific) accessibility settings

Firstly, you need to import the Capable framework in your class by adding the following import statement:

import Capable

There are two different ways to initialize the framework instance. You can either set it up to consider all accessibility features

let capable = Capable()

or by passing in only specific feature names

let capable = Capable(withFeatures: [.largerText, .boldText, .shakeToUndo])

You can find a list of all accessibility features available on each platform in the accessibility feature overview section.

Get accessibility status

If you are interested in a specific accessibility feature, you can retrieve its current status as follows:

let capable = Capable()
let isVoiceOverEnabled: Bool = capable.isFeatureEnable(feature: .voiceOver)

To get a dictionary of all features, that the Capable instance has been initialized with you can use:

let capable = Capable()
let statusMap = capable.statusMap

This will return each feature name (key) along with its current value as described in the accessibility feature overview section.

Send accessibility status

The statusMap object is compatible with most analytic SDK APIs. Here's a quick example of how to send your data along with user properties or custom events.

func sendMetrics() {
    let statusMap = self.capable.statusMap
    let eventName = "Capable features received"

    // App Center
    MSAnalytics.trackEvent(eventName, withProperties: statusMap)

    // Firebase
    Analytics.logEvent(eventName, parameters: statusMap)

    // Fabric
    Answers.logCustomEvent(withName: eventName, customAttributes: statusMap)
}

Listen for settings changes

After initialization, notifications for all features that have been registered can be retrieved. To react to changes, you need to add your class as an observer as follows:

NotificationCenter.default.addObserver(
    self,
    selector: #selector(self.featureStatusChanged),
    name: .CapableFeatureStatusDidChange,
    object: nil)

Inside your featureStatusChanged you can parse the specific feature and value:

@objc private func featureStatusChanged(notification: NSNotification) {
    if let featureStatus = notification.object as? FeatureStatus {
        let feature = featureStatus.feature
        let currentValue = featureStatus.statusString
    }
}

Accessibility feature overview

The following table contains all features that are available:

โœ… API provided by Apple and fully supported by Capable

โ˜‘๏ธ API provided by Apple (status only, no notification) and fully supported by Capable

โŒ API provided by Apple but not supported by Capable due to missing system settings entry.

iOS macOS tvOS watchOS
.assistiveTouch โœ… โŒ
.boldText โœ… โœ… โ˜‘๏ธ
.buttonShapes โœ… (iOS14) โŒ
.closedCaptioning โœ… โœ…
.darkerSystemColors โœ… โŒ
.differentiateWithoutColor โœ… (iOS13) โœ… โŒ
.fullKeyboardAccess โ˜‘๏ธ
.grayscale โœ… โœ…
.guidedAccess โœ… โŒ
.hearingDevice โœ…
.increaseContrast โœ…
.invertColors โœ… โœ… โœ…
.largerText โœ… โŒ โ˜‘๏ธ
.monoAudio โœ… โœ…
.onOffSwitchLabels โœ… (iOS13) โŒ
.prefersCrossFadeTransitions โœ… (iOS14) โŒ
.reduceMotion โœ… โœ… โœ… โœ…
.reduceTransparency โœ… โœ… โœ…
.shakeToUndo โœ… โŒ
.speakScreen โœ… โŒ
.speakSelection โœ… โŒ
.switchControl โœ… โœ… โœ…
.videoAutoplay โœ… (iOS13) โœ… (iOS13)
.voiceOver โœ… โœ… โœ… โœ…

While most features can only have a statusMap value set to enabled or disabled, the .largerText and .hearingDevice feature do offer specific values:

LargerText

iOS
  • XS
  • S
  • M (default)
  • L
  • XL
  • XXL
  • XXXL
  • Accessibility M
  • Accessibility L
  • Accessibility XL
  • Accessibility XXL
  • Accessibility XXXL
  • Unknown
watchOS
  • XS
  • S (default watch with 38mm)
  • L (default watch with 42mm)
  • XL
  • XXL
  • XXXL
  • Unknown

HearingDevice

  • both
  • left
  • right
  • disabled

Logging with OSLog

The Capable framework provides a logging mechanism that lets you keep track of what's going on under the hood. You'll get information regarding your current setup, warnings about anything that might cause issues further on, and errors that will lead to misbehavior.

By default, all messages will be logged automatically by using Apple's Unified Logging System. However, it also integrates with your specific logging environment by providing a custom closure that will be called instead. For example, you may want to send all errors coming from the Capable framework to your analytics service:

// Send error messages to your data backend
Capable.onLog = { message, logType in
    if logType == OSLogType.error {
        sendLog("Capable Framework: \(message)")
    }
}

Furthermore, you can specify the minimum log level that should be considered when logging messages:

// Configure logger to only log warnings and errors (.default, .error, and .fault)
Capable.minLogType = OSLogType.default

Here's a list of the supported log types, their order, and what kind of messages they are used for:

OSLogType Usage
.debug Verbose logging *
.info Information regarding the framework setup and status changes
.default Warnings that may lead to unwanted behavior
.error Errors caused by the framework
.fault Errors caused by the framework due to system issues *

* Currently not being used by the framework when logging messages.

Resources

Contributions

We'd love to see you contributing to this project by proposing or adding features, reporting bugs, or spreading the word. Please have a quick look at our [contribution guidelines](./.github/CONTRIBUTING.md).

License

Capable is available under the MIT license. See the [LICENSE](LICENSE) file for more info.


*Note that all licence references and agreements mentioned in the Capable README section above are relevant to that project's source code only.