だから、私は AQGridView で作業しています。画像を含むカスタムセルがあります。ここで、クリックしたときに画像が跳ねるようにします。画像のフレームを操作してみましたが、うまくいかなかったので、メインビューで UIImageView を作成してパスアニメーションを与えようとしていますが、最終的にはビューが左上に表示されるだけです問題のセルのコーダー。関連するコードは次のとおりです。
-(void)bounce:(CoverGridCell*)v {
UIView * w = [v.subviews objectAtIndex:0];
UIImageView * u = [[UIImageView alloc] initWithImage:v.image];
u.frame = [self.view convertRect:[[w.subviews objectAtIndex:0] frame] fromView:w];
double __block y = u.frame.origin.y;
double __block x = u.frame.origin.x;
[self.view addSubview:u];
CGMutablePathRef cgmp = CGPathCreateMutable();for (int j= 10; j > 0;j--) {
CGAffineTransform t1 = CGAffineTransformMakeTranslation(0, - j*j);
CGAffineTransform t2 = CGAffineTransformInvert(t1);
CGPathMoveToPoint(cgmp,&t1, x, y - j * j);
CGPathMoveToPoint(cgmp,&t2, x, y);
}
CGPathRef cgp = CGPathCreateCopy(cgmp);
CGPathRelease(cgmp);
CAKeyframeAnimation *anim = [CAKeyframeAnimation animationWithKeyPath: @"position"];
anim.duration = 5.0;
anim.delegate = self;
anim.path = cgp;
anim.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseIn];
[u.layer addAnimation:anim forKey:@"DoesThisMatter"];
[u.layer setPosition:CGPointMake(x,y)];
}