Questions tagged [abpeoplepickerview]

The ABPeoplePickerView class allows you to customize the behavior of people-picker views in an application’s user interface.

The ABPeoplePickerView class allows you to customize the behavior of people-picker views in an application’s user interface. Inherits from NSView : NSResponder : NSObject

It is in the AddressBook.framework.

References:

131 questions
0
votes
1 answer

Setting a prompt in an ABPeoplePickerNavigationController

I'm having trouble getting this code to set the prompt: // Create a PeoplePicker ABPeoplePickerNavigationController *objPeoplePicker = [[ABPeoplePickerNavigationController alloc] init]; [objPeoplePicker setPeoplePickerDelegate:self]; // Customize…
Jesse Bunch
  • 6,651
  • 4
  • 36
  • 59
0
votes
1 answer

Getting \U00a , While fetching multiple phone numbers from the contact iOS

I am trying to fetch multiple phone numbers from the contacts of device. It's working fine if the contact have only one number, but it's f***** when they have multiple numbers (which means that I'm getting "\U00a" in between the numbers). I tried…
coreDeviOS
  • 1,468
  • 2
  • 14
  • 27
0
votes
0 answers

Send SMS to Selected Contacts in iPhone

I want to send SMS invite to multiple phone numbers selected from the contact list, I tried to use ABPeoplePicker but it is not coming correctly, my contact list is always showing blank. - (void)viewDidLoad { [super viewDidLoad]; …
Subramanian Raj
  • 389
  • 2
  • 5
  • 16
0
votes
1 answer

How to put my address book data into UITextField

ABAddressBookRef _addressBookRef = ABAddressBookCreate (); NSArray* allPeople = (NSArray *)ABAddressBookCopyArrayOfAllPeople(_addressBookRef); NSMutableArray* _allItems = [[NSMutableArray alloc] initWithCapacity:[allPeople count]]; // capacity is…
user393273
  • 1,430
  • 5
  • 25
  • 48
0
votes
2 answers

iOS 9 Contact List buttons White on White

I realize that ABPeoplePicker has changed for iOS 9 but the functionality is still there and working for now. The issue I am having is that the "Group" and "Cancel" buttons are coming up as white on a white background. So very hard to see. The…
C6Silver
  • 3,127
  • 2
  • 21
  • 49
0
votes
1 answer

How to return a phone number to swift app?

I want to have my user select a phone number for someone in their contacts and I want to return that number to the app so that I can use it for later. Here is my code for allowing the user to select one of their contacts phone numbers, but when I…
Jackson M.
  • 43
  • 1
  • 3
0
votes
1 answer

Cannot select person from Contact List in iOS8

I realize this question has been asked prior but nothing mentioned in those threads worked. Many seemed to have the issue because the delegate was set in viewDidLoad but as you can see from the below, that is not where I am setting mine. The…
C6Silver
  • 3,127
  • 2
  • 21
  • 49
0
votes
0 answers

Peoplepickerdidselectperson keeps dismissing after person is selected

For my app, I am trying to detect whether or not a selected person's contact consists of more than 1 phone number. If it only contains 1 number, I want to use -(void)peoplePickerNavigationController:(ABPeoplePickerNavigationController…
joaquin
  • 31
  • 2
0
votes
1 answer

Not getting "-" "." " " while picking up a contact from phonebook from ABPerson

I want to get number as it is with "-" " " "." while picking up a contact from phone book here's my code . My main motive is to extract the country code from the number if + is present. Also please suggest me if there is any other way to access…
0
votes
3 answers

Pushing ABPersonViewController to ABPeoplePickerNavigationController on iOS8

Presenting the people picker ABPeoplePickerNavigationController *peoplePicker = [[ABPeoplePickerNavigationController alloc] init]; peoplePicker.allowsActions = YES; peoplePicker.allowsEditing = NO; peoplePicker.peoplePickerDelegate = self; [self…
0
votes
1 answer

Closing Address Book in iOS

I know how to open up and send an email in iOS using MFMailComposeViewController. The code below will let the user write and send an email, and then go straight back to the app. - (IBAction)sendEmail:(id)sender { // Email Subject …
narner
  • 2,908
  • 3
  • 26
  • 63
0
votes
2 answers

ABMultiValueIdentifier is always 0 (Zero) ABPeoplePicker

I am trying to give the user the possibility to select a phone number from their Contacts and then display the chosen number in a UITextField. The problem is that the returned ABMultiValueIdentifier from shouldContinueAfterSelectingPerson is always…
PaperThick
  • 2,749
  • 4
  • 24
  • 42
0
votes
1 answer

ABPersonViewController disappear after selecting person

i have a question about the ABPersonViewController. I use the ABPeoplePickerNavigationControllerDelegate to show the people picker (list of contacts). I want to show a ABPersonViewController when i select a person. The problem is that the…
Yetispapa
  • 2,174
  • 2
  • 30
  • 52
0
votes
1 answer

ABPersonViewController not retrieving data when pushed into PeoplePickerNavigationController

I am trying to show ABPersonVIewController on PeoplePickerNavigationController. But it isn't working in iOS 8. Here is the code I have used. ABPersonViewController *personVC = [[ABPersonViewController alloc] init]; personVC.addressBook =…
Jean Paul
  • 2,389
  • 5
  • 27
  • 37
0
votes
1 answer

Reload UITableView after ABPeoplePicker selection

So, i have a UITableView loaded in a UIViewController. The table get its data from NSMutableArray I have added a UIBarButtonItem on the NavigationBar which will open a ABPeoplePickerNavigationController to select a contact and add its name in the…
Fouad
  • 399
  • 1
  • 7
  • 19
1 2 3
8 9