I have been looking for any example code for drawing a UILabel (or just an NSString or something) on a curved path, but have come up empty handed.

Does anyone know whether it's possible to draw text on a curved path, like a circle or something, without using separate pieces of graphics for every single letter?

link|improve this question

71% accept rate
I sure can't think of anything built in that would allow you to do this without drawing each letter individually. You may have to go that route. – Ed Marty Oct 7 '09 at 2:31
Can you point me in a direction to how this is done, so I can check out whether it's worth it? It's not a crucial aspect of my project, but more to make the UI just a tad nice. Thank you. – runmad Oct 7 '09 at 13:39
feedback

2 Answers

up vote 1 down vote accepted

Split the String into letters and then so something like this:

http://stackoverflow.com/questions/930313/how-do-i-draw-an-nsstring-at-an-angle

increasing the angle and changing the position after every letter.

link|improve this answer
feedback

Check out http://github.com/yllan/funtextfield It's a mac example, but you can also porting it to iPhone.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.