Call super implementation for reset method. Change reference view to window.

This commit is contained in:
Wojciech Nagrodzki 2013-10-16 10:13:10 +02:00
parent ba950f4635
commit 8c73a4f8cd
Signed by: wnagrodzki
GPG key ID: E9D0EB0302264569

View file

@ -57,6 +57,7 @@ CGPoint CGRectGetMidPoint(CGRect rect)
- (void)reset - (void)reset
{ {
[super reset];
self.trackedTouch = nil; self.trackedTouch = nil;
} }
@ -142,7 +143,7 @@ CGPoint CGRectGetMidPoint(CGRect rect)
- (UIView *)referenceView - (UIView *)referenceView
{ {
return self.view.superview; return self.view.window;
} }
- (float)angleForVectorWithStartPoint:(CGPoint)startPoint endPoint:(CGPoint)endPoint - (float)angleForVectorWithStartPoint:(CGPoint)startPoint endPoint:(CGPoint)endPoint