Skip to content

Instantly share code, notes, and snippets.

@versluis
Created July 27, 2012 14:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save versluis/3188420 to your computer and use it in GitHub Desktop.
Save versluis/3188420 to your computer and use it in GitHub Desktop.
How to create a custom button
UIImage *normal = [UIImage imageNamed:@"normalButton.png"];
UIImage *highlighted = [UIImage imageNamed:@"pressedButton.png"];
[self.theButton setBackgroundImage:normal forState:UIControlStateNormal];
[self.theButton setBackgroundImage:highlighted forState:UIControlStateHighlighted];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment