Skip to content

Instantly share code, notes, and snippets.

@xr1337
Last active December 18, 2015 01:29
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 xr1337/5704267 to your computer and use it in GitHub Desktop.
Save xr1337/5704267 to your computer and use it in GitHub Desktop.
initialize roundtouchbutton
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view from its nib.
RoundTouchButton *rtb = [[RoundTouchButton alloc]initWithFrame:CGRectMake(0, 0, 200, 200)];
rtb.backgroundColor = [UIColor orangeColor];
[rtb addTarget:self action:@selector(rtbTapped) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:rtb];
}
- (void) rtbTapped{
NSLog(@"%@",@"Tap recieved!");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment