Is this possible to achieve something like that on iOS simply using UILabel + UIView ?
I've tried using a UIWebView but it's too slow to be used in a UITableView.
That style using UILabel ? http://cl.ly/f9d4f776171e1cb6faaf/content
Is this possible to achieve something like that on iOS simply using UILabel + UIView ?
I've tried using a UIWebView but it's too slow to be used in a UITableView.
That style using UILabel ? http://cl.ly/f9d4f776171e1cb6faaf/content
Something like this
lbl.backgroundColor = [UIColor redColor];
lbl.textColor = [UIColor whiteColor];
Assuming lbl is a UILabel object.
lbl.font = [UIFont boldSystemFontOfSize:20];