検証結果はこちら
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Assume "self" is added to a UIScrollView | |
- (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gestureRecognizer | |
{ | |
NSLog(@"%s", __func__); | |
if ([gestureRecognizer isKindOfClass:[UIPanGestureRecognizer class]]) { | |
// Ignore horizontal or vertical pans depending on the orientation property | |
UIPanGestureRecognizer *panGesture = (UIPanGestureRecognizer *)gestureRecognizer; | |
CGPoint translation = [panGesture translationInView:self]; | |
NSLog(@" * self.frame = %@", NSStringFromCGRect(self.frame)); | |
NSLog(@" * translation = %@", NSStringFromCGPoint(translation)); | |
NSLog(@" * velocity = %@", NSStringFromCGPoint([panGesture velocityInView:self])); | |
NSLog(@" * location = %@", NSStringFromCGPoint([panGesture locationInView:self])); | |
NSLog(@" * superview.frame = %@", NSStringFromCGRect(self.superview.frame)); | |
NSLog(@" * supertranslation = %@", NSStringFromCGPoint([panGesture translationInView:self.superview])); | |
NSLog(@" * supervelocity = %@", NSStringFromCGPoint([panGesture velocityInView:self.superview])); | |
NSLog(@" * superlocation = %@", NSStringFromCGPoint([panGesture locationInView:self.superview])); | |
switch (orientation) | |
{ | |
case Holizontal: | |
{ | |
return fabs(translation.x) > fabs(translation.y); | |
} | |
case Vertical: | |
{ | |
return fabs(translation.x) < fabs(translation.y); | |
} | |
default: | |
{ | |
NSAssert1(NO, @"orientation value %d is invalid.", orientation); | |
return NO; | |
} | |
} | |
} | |
return YES; | |
} | |
/* | |
Result in iOS 4.0.0 | |
-[MyView gestureRecognizerShouldBegin:] | |
* self.frame = {{856, 0}, {107, 380}} | |
* translation = {0, 0} | |
* velocity = {-256.336, -427.227} | |
* location = {0, 218} | |
* superview.frame = {{0, 0}, {320, 380}} | |
* supertranslation = {0, 0} | |
* supervelocity = {-256.336, -427.227} | |
* superlocation = {856, 218} | |
-[MyView gestureRecognizerShouldBegin:] | |
* self.frame = {{856, 0}, {107, 380}} | |
* translation = {0, 0} | |
* velocity = {-126.199, 25.2398} | |
* location = {4, 196} | |
* superview.frame = {{0, 0}, {320, 380}} | |
* supertranslation = {0, 0} | |
* supervelocity = {-126.199, 25.2398} | |
* superlocation = {860, 196} | |
Result in iOS 4.3.4 | |
-[MyView gestureRecognizerShouldBegin:] | |
* self.frame = {{749, 0}, {107, 380}} | |
* translation = {0, -6.5} | |
* velocity = {15.7758, -260.301} | |
* location = {58, 300.5} | |
* superview.frame = {{0, 0}, {320, 380}} | |
* supertranslation = {0, -6.5} | |
* supervelocity = {15.7758, -260.301} | |
* superlocation = {807, 300.5} | |
-[MyView gestureRecognizerShouldBegin:] | |
* self.frame = {{642, 0}, {107, 380}} | |
* translation = {8, 0} | |
* velocity = {283.102, 78.5224} | |
* location = {107.5, 122} | |
* superview.frame = {{0, 0}, {320, 380}} | |
* supertranslation = {8, 0} | |
* supervelocity = {283.102, 78.5224} | |
* superlocation = {749.5, 122} | |
*/ |