Hello, guys.
I want to put an centered image and a bottom centered text in a UIButton.
How I can do that?
Thanks in advance.
Hello, guys.
I want to put an centered image and a bottom centered text in a UIButton.
How I can do that?
Thanks in advance.
Ok, figure out how. Using the methods:
[button1 setTitleEdgeInsets:UIEdgeInsetsMake(30.0, 0.0, 0.0, 0.0)];
[button1 setImageEdgeInsets:UIEdgeInsetsMake(-10.0, 29.0, 0.0, 0.0)];
:)