Guest User

Untitled

a guest
Sep 18th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. UIButton *videoButton=[[UIButton alloc] initWithFrame:CGRectMake(50, 2, 50, 40)];
  2.    
  3.     videoButton.backgroundColor=[UIColor redColor];
  4.    
  5.     UIBarButtonItem *barButton=[[UIBarButtonItem alloc] initWithCustomView:videoButton];
  6.    
  7.     //self.navigationItem.rightBarButtonItem=barButton;
  8.     UIButton *aboutButton=[[UIButton alloc] initWithFrame:CGRectMake(50, 2, 50, 40)];
  9.    
  10.     aboutButton.backgroundColor=[UIColor greenColor];
  11.    
  12.     UIBarButtonItem *barButton1=[[UIBarButtonItem alloc] initWithCustomView:aboutButton];
  13.    
  14.    
  15.    
  16.     NSArray *buttons=[[NSArray alloc] initWithObjects:barButton,barButton1, nil];
  17.    
  18.    
  19.     self.navigationItem.rightBarButtonItems=buttons;
Add Comment
Please, Sign In to add comment