How can I wait for the contact to be chosen in my address book, before going on?
Hereunder the code I use
BPeoplePickerNavigationController *picker = [[ABPeoplePickerNavigationController alloc] init];
picker.peoplePickerDelegate = self;
[self presentModalViewController:picker animated:YES];
//following code
Right now it just proceeds with executing the code...
Thanks