i’m branding an iphone app and the designer wants to display list items using Georgia. This is not a big deal, but he wants them do appear as small-caps..
is this possible to do in iPhone os3?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I assume by ‘list item’ you mean a
UITableViewCell; if so, you can change the font family and size by setting thetextLabel.fontproperty in thecellForRowAtIndexPathdelegate method:Update: Ah, I just noticed you’re looking for small caps, not a small font size; whoops. As far as I know there’s no easy way to do it. You could try loading a small caps font yourself, which seems ridiculously painful.