Files
Attractor/App/Utilities/UIKeyCommand+ConvInit.swift
2020-09-21 18:35:39 -07:00

16 lines
342 B
Swift

//
// UIKeyCommand+ConvInit.swift
// App
//
// Created by James Magahern on 9/21/20.
//
import UIKit
extension UIKeyCommand {
convenience init(modifiers: UIKeyModifierFlags, input: String, title: String, action: Selector) {
self.init(input: input, modifierFlags: modifiers, action: action)
self.title = title
}
}