How to add a right bar button to a navigation bar in iphone
问题 I want to add a right bar button item to the navigation bar, so that on click, it performs certain a function. I have created the following code to add the right bar button item, but after it is done, the bar button item is 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 {