私はUIImageView
からアニメーション化する必要がありますsize (0,0) --> (93,75)
私は次のものを持っています
[UIView animateWithDuration:0.5 delay:0 options:UIViewAnimationOptionTransitionNone
animations:^{
imgButton.layer.anchorPoint = CGPointMake(imgButton.bounds.size.width/2, imgButton.bounds.size.height/2);
CGRect btnFrame = imgButton.frame;
btnFrame.size.width = 105;
btnFrame.size.height = 85;
imgButton.frame = btnFrame;
}
completion:^(BOOL finished) {
[self animageButton2:imgButton];
}];
これは機能していますが、私が抱えている唯一の問題は、アニメーションの中心からではなく、UIImageView
左上隅からアニメーション化されていることです。
誰か手がかりを得ましたか?