I have a modal view controller called "takeAction". I am trying to load a UIBarButtonItem in takeAction when the modal view controller is presented to the user. So that, the UIBarButtonItem is asynchronous to the content of the modal view controller.

But the button is not present at all. How can I fix this?

Code:

AppDelegate *delegate = [[UIApplication sharedApplication] delegate];
UINavigationController *navController = [delegate navController];
[navController presentModalViewController: takeAction animated:YES];

UIBarButtonItem *doneButton = [[UIBarButtonItem alloc] 
initWithBarButtonSystemItem:UIBarButtonItemStyleDone
target:self action:@selector(done)];

takeAction.navigationItem.rightBarButtonItem = doneButton;
[doneButton release];
link|improve this question

67% accept rate
feedback

1 Answer

UIBarButtonItem *doneButton = [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonItemStyleDone target:self action:@selector(done)];

takeAction.navigationItem.rightBarButtonItem = doneButton ; [doneButton release];

put this line above to this line

UINavigationController *navController = [delegate navController]; [navController presentModalViewController: takeAction animated:YES];

link|improve this answer
i did try that already but it still doesn't seem to work. – Praveen Nov 25 '10 at 23:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.