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.
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.
Something like this
lbl.backgroundColor = [UIColor redColor];
lbl.textColor = [UIColor whiteColor];
Assuming lbl is a UILabel object.