tags:

views:

240

answers:

1

Is it possible to display subscript or superscript text in a UITableViewCell without making custom cells?

A: 

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!

rjobidon