Apple features a nice comprehensive and small example, \"QuickContacts\" (developer.apple.com/library/IOs/samplecode/QuickContacts/Introduction/Intro.html), outlining the basic
You can use ABNewPersonViewController instead of ABPersonViewController,bellow is the code :
ABNewPersonViewController *picker = [[[ABNewPersonViewController alloc] init] autorelease];
picker.newPersonViewDelegate = self;
picker.displayedPerson = person;
picker.navigationItem.title=@"edit contact";
[self.navigationController pushViewController:picker animated:YES];