I know this is a noob question but ...I have these labels on a tableview, but the text is completely squished to the left. I want to add a bit of padding. How do I go about
you can simple add white space at the begin of you text;
[NSString stringWithFormat:@" %@",text];
It is 'evil' way to add 'padding', but it may help.