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 b2281b5 commit bfeae33Copy full SHA for bfeae33
README.md
@@ -27,8 +27,8 @@ You will need to attach the gesture on the `UIView` you want by calling the clas
27
```swift
28
override func viewDidAppear(_ animated: Bool) {
29
super.viewDidAppear(animated)
30
- GestureRecognizer.install(contactLabel).pressed { (label, recognizer) in // install the tap recognizer
31
- (label as! UILabel).textColor = .red
+ GestureRecognizer.install(contactLabel).pressed { (label, recognizer) in
+ label.textColor = .red
32
}
33
34
```
0 commit comments