Skip to content

Instantly share code, notes, and snippets.

@DonMag
Created June 14, 2016 15:38
Show Gist options
  • Select an option

  • Save DonMag/7974a802bd7c800a4e7bc08020d26b69 to your computer and use it in GitHub Desktop.

Select an option

Save DonMag/7974a802bd7c800a4e7bc08020d26b69 to your computer and use it in GitHub Desktop.
// ugly "stretched" image
UIImage* image = [UIImage imageNamed:@"btn.png"];
[_theButton setBackgroundImage:image forState:UIControlStateNormal];
// nice "stretchable" image
UIImage* image = [UIImage imageNamed:@"btn.png"];
UIEdgeInsets insets = UIEdgeInsetsMake(8, 8, 8, 8);
image = [image resizableImageWithCapInsets:insets];
[_theButton setBackgroundImage:image forState:UIControlStateNormal];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment