i want to add buttons on navigation bar but its not loading on bar.Please help.Following is my code.please tell me where i am going wrong.The view i am using is landscape
- (void)viewDidLoad {
[super viewDidLoad];
CGRect rect = CGRectMake(0.0, 0.0, 480.0, 32.0);
navBar = [[UINavigationBar alloc] initWithFrame:rect];
navBar.items = self.navigationController.navigationBar.items;
navBar.delegate = self;
//[navBar release];
navBar.tintColor =[UIColor blackColor]
UIBarButtonItem * rightButton = [[UIBarButtonItem alloc]initWithTitle:@"Photo" style:UIBarButtonItemStyleBordered target:self action:@selector(takePhoto)];
UIBarButtonItem * backButton = [[UIBarButtonItem alloc]initWithTitle:@"Camera List" style:UIBarButtonItemStyleBordered target:self action:@selector(cancel:)];
self.navigationItem.rightBarButtonItem = rightButton;
self.navigationItem.leftBarButtonItem = backButton;
//navBar.topItem.rightBarButtonItem = rightButton;
// navBar.topItem.leftBarButtonItem = backButton;
[self.view addSubview:navBar];
[backButton release];
}
try this