I have added the one button on right side of the navigation bar with this code, but i want to add the three buttton like this but i am adding with this code, I think button is overlap on one place , i am able to see only one button on right side of navigation bar.
UIButton* modalViewButton1 = [UIButton buttonWithType:UIButtonTypeInfoLight];
[modalViewButton1 addTarget:self action:@selector(modalViewAction1:) forControlEvents:UIControlEventTouchUpInside];
UIBarButtonItem *modalBarButtonItem1 = [[UIBarButtonItem alloc]
initWithCustomView:modalViewButton1];
self.navigationItem.rightBarButtonItem = modalBarButtonItem1;
[modalBarButtonItem1 release];