Skip to content

Instantly share code, notes, and snippets.

@SquaredTiki
Created April 25, 2010 11:35
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 SquaredTiki/378341 to your computer and use it in GitHub Desktop.
Save SquaredTiki/378341 to your computer and use it in GitHub Desktop.
- (IBAction)add:(id)sender {
UIButton *sampleButton = [[UIButton alloc] initWithFrame:CGRectMake(50.0f, 50.0f, 100.0f, 46.0f)];
UIImage *backgroundImage = [[UIImage imageNamed:@"redButton.png"] stretchableImageWithLeftCapWidth:11.0 topCapHeight:0.0];
[sampleButton setBackgroundImage:backgroundImage forState:UIControlStateNormal];
[self.view addSubview:sampleButton];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment