Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は指で画像を回転させる必要があり、ユーザーが指を止めると回転がゆっくりと止まります。ユーザーが画像を回転させると、画像を移動できます。
回転は振り子のように止まるべきで、
UIView アニメーションを使用し、イージング オプションのいずれかを使用する必要があります。こちらのドキュメントをご覧ください
http://developer.apple.com/library/ios/#documentation/windowsviews/conceptual/viewpg_iphoneos/animatingviews/animatingviews.html
yourView.transform = CATransform3DMakeRotation(90, 0, 0, 1);ラジアンで回転させたい量を 90 に設定します。
yourView.transform = CATransform3DMakeRotation(90, 0, 0, 1);