Skip to content

Commit

Permalink
Updated UIView extension
Browse files Browse the repository at this point in the history
  • Loading branch information
Igor Matyushkin committed Mar 17, 2017
1 parent 59bfacd commit afa607e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sensitive/Extensions/View/UIViewExtensionGestures.swift
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ public extension UIView {
Reference to receiver for support of chain calls.
*/
@discardableResult
public func onSwipe(to direction: SwipeDirection, when handlerReuseCount: GestureHandlerReuseCount = .always, handle: @escaping GestureRecognizerHandlerBlock<UISwipeGestureRecognizer>, configure: GestureRecognizerHandlerBlock<UISwipeGestureRecognizer>?) -> Self {
public func onSwipe(to direction: SwipeDirection, when handlerReuseCount: GestureHandlerReuseCount, handle: @escaping GestureRecognizerHandlerBlock<UISwipeGestureRecognizer>, configure: GestureRecognizerHandlerBlock<UISwipeGestureRecognizer>?) -> Self {
/*
* Obtain handler block for gesture recognizer.
*/
Expand Down Expand Up @@ -452,7 +452,7 @@ public extension UIView {
Reference to receiver for support of chain calls.
*/
@discardableResult
public func onScreenEdgePan(when handlerReuseCount: GestureHandlerReuseCount = .always, handle: @escaping GestureRecognizerHandlerBlock<UIScreenEdgePanGestureRecognizer>, configure: GestureRecognizerConfigurationBlock<UIScreenEdgePanGestureRecognizer>?) -> Self {
public func onScreenEdgePan(when handlerReuseCount: GestureHandlerReuseCount, handle: @escaping GestureRecognizerHandlerBlock<UIScreenEdgePanGestureRecognizer>, configure: GestureRecognizerConfigurationBlock<UIScreenEdgePanGestureRecognizer>?) -> Self {
/*
* Obtain handler block for gesture recognizer.
*/
Expand Down

0 comments on commit afa607e

Please sign in to comment.