An open API service indexing awesome lists of open source software.

https://github.com/ryanslikesocool/axtoolbox

Extensions and conveniences for macOS accessibility APIs.
https://github.com/ryanslikesocool/axtoolbox

accessibility macos swift

Last synced: about 2 months ago
JSON representation

Extensions and conveniences for macOS accessibility APIs.

Awesome Lists containing this project

README

          

# AXToolbox

Extensions and conveniences for
[macOS accessibility APIs]( https://developer.apple.com/documentation/applicationservices/carbon_accessibility ).

## NOTICE

**This package is under development and not considered production-ready.**


Breaking changes are common, documentation is incomplete, and support is limited. Use at your own risk.

---

## Installation (Swift Package Manager)

Add the following entry to your package dependencies...
```swift
.package(url: "https://github.com/ryanslikesocool/AXToolbox.git", from: "0.0.6"),
```
...and your target dependencies.
```swift
.target(
name: "MyTarget",
dependencies: [
"AXToolbox",
]
),
```

---

## Documentation

[Quick Start Guide]( Sources/AXToolbox/Documentation.docc/Articles/QuickStart.md )

Most of this package is documented with
[DocC]( https://www.swift.org/documentation/docc/ ).


To view documentation in Xcode, select `Product > Build Documentation` from the menu bar.

## Dependencies

| Dependency | Reason |
| - | - |
| [DeclarativeCore]( https://github.com/ryanslikesocool/DeclarativeCore ) | Shared declarative code. |