Is there any way to get a UITextField to display an NSString containing unicode subscript characters (e.g. ₂ , ₃ ) correctly without cutting them off? I'm starting with a UITextField created in IB.
I've tried:
setting the frame.size.height on the UITextField larger in code (just centers the cut-off characters in a taller box)
changing the contentVerticalAlignment property to UIControlContentVerticalAlignmentTop- just pushes the cut-off characters to the top
playing with the clipSubviews/ Autoresize Subviews- no effect
This is for a chemical program, so it's kinda important to see the bottom half of the numbers. Help!