rotating circled View with user interaction
Is it possible to开发者_如何学编程 rotate a view as in circle form by animation in iPhone. here to mention that must be interactive as user will interact with icons on it.. :P
Yes, using CGAffineTransformMakeRotation. For example:
view.transform = CGAffineTransformMakeRotation(M_PI);
精彩评论