次のようなアンカーポイントを使用して画像を回転させる方法を説明できますか
https://www.dropbox.com/s/vh3h5cr1mkdbfh3/ex_image2.JPG
オン.m
#import <QuartzCore/QuartzCore.h>
.h で
[UIView animateWithDuration:0.7f
delay:0
options:UIViewAnimationOptionCurveEaseOut
animations:^
{
self.center = position;
self.layer.anchorPoint = CGPointMake(-1, 0);
self.transform = CGAffineTransformMakeRotation(-5);
}
completion:^(BOOL completed){
}];
このコードを使用すると、そのようなものがあります