Нужен именно код вращения объекта на какую-либо величину от текущего положения. Расчеты произведу сам :)
Использовал CGAffineTransformMakeRotation, но он вместо вращения растягивает объект =) Так и не понял, как это пофиксить.
А что из себя представляет монета? UIImageView? или Вы ее рисуете в контекст. Покажите, пожалуйста, код. Расширьте вопрос, иначе вразумительного ответа не дождетесь.
Скорей всего Вы пытались изменять frame после поворота.
Возможно frame Вы использовали как раз для эффекта ползанья по стенке монеты, тогда изменяйте не frame, а view.center. Вот выдержка из документации по UIView Warning If the transform property is not the identity transform, the value of this property is undefined and therefore should be ignored.
However, if the transform property contains a non-identity transform, the value of the frame property is undefined and should not be modified. In that case, you can reposition the view using the center property and adjust the size using the bounds property instead.