Reputation: 10563
Can you give me some links or example programs to create UIButtons on a view and on action on it, we need to create one more button on other view.. plz help
Upvotes: 2
Views: 278
Reputation: 7821
-(void)action:(id)sender
{
}
UIButton *button = [UIButton buttonWithType: UIButtonTypeRoundedRect];
button.frame = CGRectMake(x, y, width, height);
button.titleLabel.font = [UIFont systemFontOfSize: 30];
[button setTitle:@"TITLE"
forState:UIControlStateNormal];
[button addTarget:self
action:@selector(action:)
forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:button];
Upvotes: 4