@@ -6,12 +6,12 @@ import UIKit
6
6
class HorizPanGestureRecognizer : UIPanGestureRecognizer {
7
7
var origLoc : CGPoint !
8
8
9
- override func touchesBegan( touches: NSSet ! , withEvent event: UIEvent ! ) {
9
+ override func touchesBegan( touches: NSSet , withEvent event: UIEvent ) {
10
10
self . origLoc = ( touches. anyObject ( ) as UITouch ) . locationInView ( self . view!. superview)
11
11
super. touchesBegan ( touches, withEvent: event)
12
12
}
13
13
14
- override func touchesMoved( touches: NSSet ! , withEvent event: UIEvent ! ) {
14
+ override func touchesMoved( touches: NSSet , withEvent event: UIEvent ) {
15
15
if self . state == . Possible {
16
16
let loc = ( touches. anyObject ( ) as UITouch ) . locationInView ( self . view!. superview)
17
17
let deltaX = fabs ( loc. x - self . origLoc. x)
@@ -34,12 +34,12 @@ class HorizPanGestureRecognizer : UIPanGestureRecognizer {
34
34
class VertPanGestureRecognizer : UIPanGestureRecognizer {
35
35
var origLoc : CGPoint !
36
36
37
- override func touchesBegan( touches: NSSet ! , withEvent event: UIEvent ! ) {
37
+ override func touchesBegan( touches: NSSet , withEvent event: UIEvent ) {
38
38
self . origLoc = ( touches. anyObject ( ) as UITouch ) . locationInView ( self . view!. superview)
39
39
super. touchesBegan ( touches, withEvent: event)
40
40
}
41
41
42
- override func touchesMoved( touches: NSSet ! , withEvent event: UIEvent ! ) {
42
+ override func touchesMoved( touches: NSSet , withEvent event: UIEvent ) {
43
43
if self . state == . Possible {
44
44
let loc = ( touches. anyObject ( ) as UITouch ) . locationInView ( self . view!. superview)
45
45
let deltaX = fabs ( loc. x - self . origLoc. x)
0 commit comments