A customizable, expandable, and easy-to-use input accessory view component for iOS.
AccessoryKit aims to provide a customizable, expandable and easy-to-use input accessory view. This component is developed for and is currently used in my app MDNotes.
The main features are:
- Responsively uses UITextInputAssistantItemon iPad andUITextInputViewon iPhone.
- Scrollable input accessory view with blurry background and customizable buttons.
- Grouping buttons into a visually related button group.
- Supports Auto Layout and Safe Area.
- Supports dark mode.
- Provides built-in pre-defined buttons with SF Symbol.
- Supports presenting UIMenuon input accessory view.
- Control state of identified buttons independently.
- iOS 14.0+
- Swift 5.7+
AccessoryKit is available as a Swift Package. Add this repo to your project through Xcode GUI or Package.swift.
dependencies: [
    .package(url: "https://github.com/xnth97/AccessoryKit.git", .upToNextMajor(from: "2.0.0"))
]To install AccessoryKit, simply add the following line to your Podfile:
pod 'AccessoryKit'To run the example project, clone the repo, and run pod install from the Example directory first.
// Create view model array of key button groups
let keyButtonGroups: [KeyboardAccessoryButtonGroup] = [
    // Group is just an array of `KeyboardAccessoryButton`. Group elements will be visually 
    // grouped and close to each other.
    [
        // Create button with built-in type and tap handler block that will be placed on 
        // the leading side of keyboard on iPad
        KeyboardAccessoryButton(type: .undo, position: .leading) { [weak self] in
            self?.undo()
        },
        // Create button with UIImage that will be collapsed in an overflow menu on iPad
        KeyboardAccessoryButton(image: UIImage(named: "img"), position: .overflow),
    ],
    [
        // Create button with title
        KeyboardAccessoryButton(title: "Button"),
        // Create button with UIMenu
        KeyboardAccessoryButton(type: .link, menu: createInsertMenu()),
    ],
]
// Initialize and retain `KeyboardAccessoryManager`
self.accessoryManager = KeyboardAccessoryView(
    keyButtonGroups: keyButtonGroups,
    showDismissKeyboardKey: true,
    delegate: self)
// Configures the `UITextView` with `KeyboardAccessoryManager`
self.accessoryManager.configure(textView: textView)AccessoryKit is available under the MIT license. See the LICENSE file for more info.
