An open API service indexing awesome lists of open source software.

https://github.com/fromkk/strokeview

`StrokeView` is handlable round trip gesture on extended `UIView`.
https://github.com/fromkk/strokeview

Last synced: 9 months ago
JSON representation

`StrokeView` is handlable round trip gesture on extended `UIView`.

Awesome Lists containing this project

README

          

# StrokeView

![StrokeView](./Icons/StrokeView.png)

`StrokeView` is handlable round trip gesture on extended `UIView`.

# Usage

```swift
class ViewController: UIViewController, StrokeViewDelegate {

override func viewDidLoad() {
super.viewDidLoad()

let strokeView: StrokeView = StrokeView()
strokeView.delegate = self
view.addSubview(strokeView)
}

func strokeViewDidStroke(_ strokeView: StrokeView) {
print("did stroke!!!")
}
}
```