UITableViewCell superscripts and indices

Is it possible to display index or superscript text in a UITableViewCell without creating custom cells?

+2


source to share


1 answer


If you only want numbers, use the Unicode characters 2070..2079 for the superscript and 2080..2089 for the index.

If you need more, I suggest using UIWebView. With HTML <sup> and <sub> tags, you can format your text and even add style in bold, italic, underline ...



Good luck to Kruin!

+1


source







All Articles