Is it possible to display subscript or superscript text in a UITableViewCell without making custom cells?
Is it possible to display subscript or superscript text in a UITableViewCell without making
Share
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.
If you only need numbers, use Unicode characters 2070..2079 for superscript and 2080..2089 for subscript.
If you need more, I suggest to use a UIWebView. With HTML tags <sup> and <sub> you can format your text and even add style with bold, italic, underline…
Good luck Cruinh!