UINavigationController: How to manage Cancel button and back button?

Do the following things. /* To SHOW the Cancel button */ - (void)showCancelButton { UIBarButtonItem *cancelButton = UIBarButtonItem alloc initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(someMethod); self navigationItem setLeftBarButtonItem:cancelButton; cancelButton release; } /* To HIDE the Cancel button */ - (void)hideCancelButton { self navigationItem setLeftBarButtonItem:nil; } Make sure self. NavigationController.navigationItem.

Thanks it works :) – Tariq- iPHONE Programmer Aug 23 at 11:16 Welcome! ;-) – EmptyStack Aug 23 at 11:36.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions