Skip to content

Instantly share code, notes, and snippets.

@lazybios
Created June 10, 2015 03:45
Show Gist options
  • Save lazybios/13570e23ac53bdc99e8c to your computer and use it in GitHub Desktop.
Save lazybios/13570e23ac53bdc99e8c to your computer and use it in GitHub Desktop.
pramgramaticly create a button
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[button addTarget:self
action:@selector(aMethod:)
forControlEvents:UIControlEventTouchUpInside];
[button setTitle:@"Show View" forState:UIControlStateNormal];
button.frame = CGRectMake(80.0, 210.0, 160.0, 40.0);
[view addSubview:button]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment