I have this relatively simple question, I think.
Imagine I have a UILabel with some text in it. Then, I want on the left, or right side of
the text also an image to be displayed (added).
Something like this:
http://www.zazzle.com/blue_arrow_button_left_business_card_templates-240863912615266256
Is there a way to do it, using, say UILabel methods? I didn’t find such.
Create a custom UIView that contains a UIImageView and UILabel subview. You’ll have to do some geometry logic within to size the label to fit the image on the left or right, but it shouldn’t be too much.