groups

Link to this snippet:


Download to Code Collector

language: Objective-C
licence: Other

UIButton - Create a button

options: send to code collectorview all crossini's snippets
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
button.frame = CGRectMake(130,100,75,30);
[button setTitle:@"Push" forState:UIControlStateNormal];
[button setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
[self.view addSubview:button];