I need to embed small icons ( sort of custom bullets ) to my UILabel
in iOS7.
How can I do this in interface designer? Or at least in code?
In Android there are leftDrawable
and rightDrawable
for labels, but how it is done in iOS?
Sample in android :
You could use a UITextField with the leftView property and then set the
enabled
property toNO
Or use a UIButton and
setImage:forControlState
you have to make a custom object where you used a
UIView
and inside you put aUIImageView
and aUILabel
try this way...