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.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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).