I want to know how we can change the navigation bar title of UIImagePickerController. I tried several ways but couldn\'t do it.
tried the follwing ways,
I found the way to do it. When you set your UIImagePickerController delegate to self and implement the following method it worked.
- (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated
{
[viewController.navigationItem setTitle:@""];
}
Found it from this link http://forums.macrumors.com/showthread.php?t=533216
Thanks...