How I can print on UILabel text like this “m³”?
Thanks
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.
NSString and UILabel do not have such advanced formatting. You can print ³ though, because it’s a character. Which you can safely put inside an NSString like
NSString *symbol = @"³". To input other strings, click the U.S. flag at top right and choose Character Viewer.