2

タッチを検出し、タッチに基づいて画像を移動、回転、拡大縮小するUIImageViewのサブクラスを作成しています。しかし、私は本当にここで車輪の再発明をしているような気がします、そしてそれは私を狂わせています。これはすでにどこかに存在するべきではありませんか?

誰かがすでにこれを行っている例、またはクラスへのリンクを持っていますか?または、自分で作成したクラスがある場合は、それも役立ちます。

よろしくお願いします。

4

2 に答える 2

8

私はそれを理解しました...私は自分の質問に答えました。

うまくいけば、これは誰かに役立ちます。

興味のある方のために、画像の移動、拡大縮小、回転に使用できる UIImageView サブクラスの実装を次に示します。それは私にとってかなりうまくいきます。

    - (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {

     if( [touches count] == 1 ) {

float difx = [[touches anyObject] locationInView:self].x - [[touches anyObject] previousLocationInView:self].x;

float dify = [[touches anyObject] locationInView:self].y - [[touches anyObject] previousLocationInView:self].y;



          CGAffineTransform newTransform1 = CGAffineTransformTranslate(self.transform, difx, dify);

          self.transform = newTransform1;

     } else     if( [touches count] == 2 ) {

int prevmidx = ([[[touches allObjects] objectAtIndex:0] previousLocationInView:self].x + [[[touches allObjects] objectAtIndex:1] previousLocationInView:self].x) / 2;

int prevmidy = ([[[touches allObjects] objectAtIndex:0] previousLocationInView:self].y + [[[touches allObjects] objectAtIndex:1] previousLocationInView:self].y) / 2;

int curmidx = ([[[touches allObjects] objectAtIndex:0] locationInView:self].x + [[[touches allObjects] objectAtIndex:1] locationInView:self].x) / 2;

int curmidy = ([[[touches allObjects] objectAtIndex:0] locationInView:self].y + [[[touches allObjects] objectAtIndex:1] locationInView:self].y) / 2;

          int difx = curmidx - prevmidx;

          int dify = curmidy - prevmidy;



CGPoint prevPoint1 = [[[touches allObjects] objectAtIndex:0] previousLocationInView:self];

CGPoint prevPoint2 = [[[touches allObjects] objectAtIndex:1] previousLocationInView:self];

CGPoint curPoint1 = [[[touches allObjects] objectAtIndex:0] locationInView:self];

CGPoint curPoint2 = [[[touches allObjects] objectAtIndex:1] locationInView:self];

          float prevDistance = [self distanceBetweenPoint1:prevPoint1 andPoint2:prevPoint2];

          float newDistance = [self distanceBetweenPoint1:curPoint1 andPoint2:curPoint2];

          float sizeDifference = (newDistance / prevDistance);



          CGAffineTransform newTransform1 = CGAffineTransformTranslate(self.transform, difx, dify);

          self.transform = newTransform1;



          CGAffineTransform newTransform2 = CGAffineTransformScale(self.transform, sizeDifference, sizeDifference);

          self.transform = newTransform2;





          float prevAngle = [self angleBetweenPoint1:prevPoint1 andPoint2:prevPoint2];

          float curAngle = [self angleBetweenPoint1:curPoint1 andPoint2:curPoint2];

          float angleDifference = curAngle - prevAngle;



          CGAffineTransform newTransform3 = CGAffineTransformRotate(self.transform, angleDifference);

          self.transform = newTransform3;

     }

}



- (NSInteger)distanceBetweenPoint1:(CGPoint)point1 andPoint2:(CGPoint)point2 {

     CGFloat deltaX = fabsf(point1.x - point2.x);

     CGFloat deltaY = fabsf(point1.y - point2.y);

     CGFloat distance = sqrt((deltaY*deltaY)+(deltaX*deltaX));

     return distance;

}



- (CGFloat)angleBetweenPoint1:(CGPoint)point1 andPoint2:(CGPoint)point2

{ 

     CGFloat deltaY = point1.y - point2.y;

     CGFloat deltaX = point1.x - point2.x;

     CGFloat angle = atan2(deltaY, deltaX);

     return angle;

}  
于 2009-06-16T07:03:18.410 に答える
2

また、iphone dev cookbook (oreilly) の Erica Sadun の例も参照してください。ジェスチャとタッチに関する第 8 章にあります。

http://github.com/erica/iphone-3.0-cookbook-/tree/master/C08-Gestures/14-Resize%20And%20Rotate/

于 2010-02-11T17:19:23.053 に答える