Advertisement
Guest User

Untitled

a guest
Jul 29th, 2015
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. UIImage *image = [UIImage new]; // your button icon image
  2. self.button.contentHorizontalAlignment = UIControlContentHorizontalAlignmentCenter;
  3. [self.button setImage:image forState:UIControlStateNormal];
  4. [self.button setImage:image forState:UIControlStateHighlighted];
  5. self.button.imageEdgeInsets = UIEdgeInsetsMake(0, self.button.frame.size.width - image.size.width, 0, 0);
  6. self.button.titleEdgeInsets = UIEdgeInsetsMake(0, 0, 0, image.size.width);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement