Hi,
I currently have a custom UITableViewCell
which contains a few labels, and an image.
The "main" label is used to display people's names. Currently, I'm styling it in bold text.
What I'd like to do (to gain some space and readability), is to mimic the Address Book app cell style, that is: first name in light text, and family name in bold text.
Is there a way to do this using the same UILabel
? Or, should I use 2 different UILabel
s? How should I layout them, without knowing their sizes?
Thanks in advance for your assistance!