UITableViewCell superscripts & subscripts
Is it possible to display subscrip开发者_C百科t or superscript text in a UITableViewCell without making custom cells?
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!
精彩评论