We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2290e5a commit 17853adCopy full SHA for 17853ad
README.md
@@ -36,11 +36,9 @@ let interposer = try Interpose(TestClass.self) {
36
methodSignature: (@convention(c) (AnyObject, Selector) -> String).self,
37
hookSignature: (@convention(block) (AnyObject) -> String).self) {
38
store in { `self` in
39
-
40
print("Before Interposing \(`self`)")
41
let string = store.original(`self`, store.selector) // free to skip
42
print("After Interposing \(`self`)")
43
44
return string + "and Interpose"
45
}
46
0 commit comments