i want to add right bar button item to navigation bar that on lick performs certain function. i have done the following code to add the right bar button item but it done not getting displayed in navigation bar:

-(void)viewDidload{
    self.navigationItem.rightBarButtonItem = 
    [[[UIBarButtonItem alloc] 
           initWithBarButtonSystemItem:UIBarButtonSystemItemAdd                                                                                                     
                                target:self
                                action:@selector(Add:)] autorelease];    
}


-(IBAction)Add:(id)sender
{

    TAddNewJourney *j=[[TAddNewJourney alloc]init];
    [app.navigationController pushViewController:j animated:YES];
    [j release];
}

//this is my add function that my right bar button item has to perform.please help me in solving this problem.Thanks

link|improve this question

67% accept rate
feedback

5 Answers

up vote 2 down vote accepted
-(void)viewDidload
{ 
app.navigationController.navigationItem.rightBarButtonItem = [[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(Add:)] autorelease];

}


-(IBAction)Add:(id)sender
{

    TAddNewJourney *j=[[TAddNewJourney alloc]init];
    [app.navigationController pushViewController:j animated:YES];
    [j release];

}

Try the other answers. I posted this answer so that it will work if your viewcontroller does not have a navigation controller which i think is the problem.

link|improve this answer
1  
i have added this code but my rightbarbutton is not visible – Rani Apr 29 '11 at 12:50
1  
UIBarButtonItem *button = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(Add:)]; app.navigationController.navigationItem.rightBarButtonItem=button; [button release]; try this – 7KV7 Apr 29 '11 at 13:03
this one i have tried it is working properly – Rani May 2 '11 at 9:19
feedback

Add this code in viewdidload

UIBarButtonItem *chkmanuaaly = [[UIBarButtonItem alloc]initWithTitle:@"Calculate" style:UIBarButtonItemStylePlain target:self action:@selector(nextview)];
self.navigationItem.rightBarButtonItem=chkmanuaaly;
[chkmanuaaly release];
link|improve this answer
i have tried this code but my right button item is not visible in navigation bar – Rani Apr 29 '11 at 12:57
i think the navigation bar is not a part of navigation controller.Do you put the navigation bar in xib file of view controller?.If then add the button also in .xib file. Hope it helps you – Aman Apr 29 '11 at 13:11
feedback
UIBarButtonItem *add=[[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(addUser)];
    self.navigationItem.rightBarButtonItem=add;
    [add release];
link|improve this answer
i have tried this code but my right button item is not visible in navigation bar – Rani Apr 29 '11 at 12:57
feedback

Use this following code:

UIBarButtonItem *add=[[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(addUser)]; self.navigationItem.rightBarButtonItem=add; [add release];

Hope this helps you out!

Enjoy!

link|improve this answer
i have added this code but my right bar button item is not visible in navigation bar – Rani Apr 29 '11 at 12:56
feedback
UIButton *dButton=[UIButton buttonWithType:0];
dButton.frame=CGRectMake(50,50,50,50);

[dButton addTarget:self  action:@selector(clickdButton:)
  forControlEvents:UIControlEventTouchUpInside];
[dButton setImage:[UIImage imageNamed:@"iconnavbar.png"]
         forState:UIControlStateNormal];    
dButton.adjustsImageWhenHighlighted=NO;
dButton.adjustsImageWhenDisabled=NO;
dButton.tag=0;
dButton.backgroundColor=[UIColor clearColor];

UIBarButtonItem *RightButton=[[[UIBarButtonItem alloc] initWithCustomView:dButton]autorelease];
self.navigationItem.rightBarButtonItem=RightButton;

and then:

-(IBAction)clickdButton:(id)sender{
    classexample *tempController=[[classexample alloc] init];
    [self.navigationController pushViewController:tempController animated:YES];
    [tempController autorelease];
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.