A way to draw an NSString along a curved path?

I searched for any sample code for drawing a UILabel (or just NSString or something else) along a curved path, but came up empty-handed.

Does anyone know if it is possible to draw text along a curved path, for example, in a circle or something, without using separate parts of the graphic for each individual letter?

+6
iphone uilabel nsstring curve
source share
1 answer

Divide the string into letters and then something like this:

How to draw NSString at an angle?

increasing the angle and changing position after each letter.

+1
source share

All Articles