I'd like to rotate an instance of the class RMMarker on the map of my iPhone app, to the current bearing the person is heading. The RMMarker uses a UIImage , and it's a little blue arrow.
If RMMarkers used a UIImageView, rotating wouldbe a piece of cake, because I would use CGAffineTransformMakeRotation. But RMMarker's use UIIMages, so I can't use this method.
Am I overlooking a simple way of solving this problem?