Dear developers,
I am new to iPhone development.
source code
UIBarButtonItem *saveButton = [[UIBarButtonItem alloc] initWithTitle:@"SAVE"
style:UIBarButtonItemStyleBordered
target:self
action:@selector(saveButtonClicked)];
self.navigationItem.rightBarButtonItem = saveButton;
by using the above , i can create navigation rightbarbuttonitem but i cant add more items into it...i need to add more buttons
please provide me a sample code to try it out
Thanks for any help and thanks for your time