Skip to content

Instantly share code, notes, and snippets.

@stith
Created January 5, 2011 03:26
Show Gist options
  • Select an option

  • Save stith/765887 to your computer and use it in GitHub Desktop.

Select an option

Save stith/765887 to your computer and use it in GitHub Desktop.
// Info button
UIButton *infoButton = [UIButton buttonWithType:UIButtonTypeInfoLight];
infoButton.frame = CGRectMake(290, 300, 20, 20);
[infoButton addTarget:self action:@selector(infoTapped:) forControlEvents:UIControlEventTouchUpInside];
[infoButton setEnabled:YES];
[containerView addSubview:infoButton];
[containerView bringSubviewToFront:infoButton];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment