From glancing at documentation and very briefly skimming the code, it seems there are no formatting controls that would allow me to do something like a table. E.g.
Column1 Column2 Column3
Value1 Value2 Value3
What do you recommend for me to be able to achieve this? Offhand, some options I can think of:
A) use 3 overlapping UILabels, clipping to mutually exclusive spaces.
B) use a monospaced font and pad with spaces. Actually, will this work? I did a quick test and it seems that padding with spaces doesn't work.
C) modify code and add new formatting controls. E.g. [150] means jump to 150 pixel offset. This is the solution I've implemented in a couple of other engines. This would allow me to do a table with one UILabel. Not sure how complex this addition is, though. Seems like it should be straightforward if I know the places to hook into that do positioning. What are those hooks?
thanks