Rename to rossler\\attix

This commit is contained in:
James Magahern
2020-07-31 17:35:03 -07:00
parent 030c1db45c
commit c723b3de88
30 changed files with 25 additions and 207 deletions

View File

@@ -0,0 +1,16 @@
//
// UIGestureRecognizer+Actions.swift
// SBrowser
//
// Created by James Magahern on 7/31/20.
//
import UIKit
extension UIGestureRecognizer
{
convenience init(action: UIAction) {
self.init(target: action, action: NSSelectorFromString("_performActionWithSender:"))
objc_setAssociatedObject(self, "associatedUIAction", action, .OBJC_ASSOCIATION_RETAIN)
}
}