ios - UIButton image always to be 80 point away from title -
i have used method set image 80 point away title. button has blue color background here.
self.btnerrormsg.imageedgeinsets = uiedgeinsetsmake(0, 0, 0, 80);
problem if text longer, overlap text. how shall do?
you can use :
button.titleedgeinsets = uiedgeinsetsmake(cgfloat top, cgfloat left, cgfloat bottom, cgfloat right);
it works me perfectly
Comments
Post a Comment