Skip to content

Instantly share code, notes, and snippets.

@mkral
Created February 19, 2013 02:06
Show Gist options
  • Save mkral/4982488 to your computer and use it in GitHub Desktop.
Save mkral/4982488 to your computer and use it in GitHub Desktop.
Stretchable UIImage On Button
UIButton *button = [[UIButton alloc] initWithFrame:CGRectMake(100, 100, 320, 44)];
UIImage *backgroundImage = [[UIImage imageNamed:@"whiteButtonWithArrow"] stretchableImageWithLeftCapWidth:6 topCapHeight:0];
[button setBackgroundImage:backgroundImage forState:UIControlStateNormal];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment