ObjectHook
A hook to an instance method of a single object, stores both the original and new implementation. Think about: Multiple hooks for one object
- 
                  
                  The object that is being hooked. DeclarationSwift public let object: AnyObject
- 
                  
                  Initialize a new hook to interpose an instance method. DeclarationSwift public init(object: AnyObject, selector: Selector, implementation: (ObjectHook<MethodSignature, HookSignature>) -> HookSignature?) throws
- 
                  
                  The original implementation of the hook. Might be looked up at runtime. Do not cache this. DeclarationSwift public override var original: MethodSignature { get }
- 
                  
                  DeclarationSwift public var debugDescription: String { get }
 View on GitHub
            View on GitHub
           Install in Dash
            Install in Dash
           ObjectHook Class Reference
      ObjectHook Class Reference