Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Navigation bar not visible on new contact page

I want to show new contact page on button click I have written this code within action button

{  
    ABNewPersonViewController *abnewpersonviewcontroller = [[ABNewPersonViewController alloc] init];   
    [self.navigationController pushViewController:abnewpersonviewcontroller animated:YES];
    [newPersonController release];
 }   

this code succesfully reach me to the new contact page but the problem is navigation bar not shown onto the new contact page in which i can save record and also have cancel button on it kindly tell me how I can display the navigation on new contact page when I click on action button

like image 678
Azy Qadir Avatar asked Dec 05 '25 02:12

Azy Qadir


2 Answers

use this

ABNewPersonViewController *abnewpersonviewcontroller = [[ABNewPersonViewController alloc] init]; 
self.navigationController.navigationBarHidden = NO;
[self.navigationController pushViewController:abnewpersonviewcontroller animated:YES];
[newPersonController release];
like image 56
Talha Avatar answered Dec 07 '25 18:12

Talha


    ABNewPersonViewController *picker =[ABNewPersonViewController new];
    UINavigationController *nc = [[UINavigationController alloc] initWithRootViewController:picker];
    picker.newPersonViewDelegate =self;
    [self presentViewController:nc animated:YES completion:nil];
like image 27
iKushal Avatar answered Dec 07 '25 18:12

iKushal



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!