I am having difficulties adding fields programatically in new contact form of iPhone.
I am able to open the new contact form by seeing the example "Quick Contact" however I don't know how to add the details in field so that the user don't have to add them manually and user will have choice to Done or Cancel only however he/she can change the field details in fields.
I am using the below code to bring the new contact form.
ABNewPersonViewController *picker = [[ABNewPersonViewController alloc] init];
picker.newPersonViewDelegate = self;
UINavigationController *navigation = [[UINavigationController alloc] initWithRootViewController:picker];
[self presentModalViewController:navigation animated:YES];
[picker release];
[navigation release];