Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. UIButton *bt_f=[UIButton buttonWithType:UIButtonTypeRoundedRect];
  2.     bt_f.frame=CGRectMake(85, 180, 140, 40);
  3.     bt_f.backgroundColor=[UIColor greenColor];
  4.    
  5.    
  6.     [bt_f addTarget:self action:@selector(store:) forControlEvents:UIControlEventTouchUpInside];
  7.    
  8.     [bt_f setTitle:@"Store" forState:UIControlStateNormal];
  9.     [self.view addSubview:bt_f];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement