0

I want to add label in view. Not rectangle label but curve label.

middle point lower with certain rate. Like 'U'. how?? I think using CGContextAddCurveToPoint. but how to use? in ios.

SeoTaiJi
  • 141
  • 1
  • 9

1 Answers1

0

You can't do this with a UILabel, but if you take the string you want to draw into a curve, you can draw each letter and then alter the angle of the drawing using the technique in this related question:

How do I draw an NSString at an angle?

(i.e. change the angle and position after every letter).

Community
  • 1
  • 1
Michael Dautermann
  • 88,797
  • 17
  • 166
  • 215