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
1
vote
2 answers

How to get an email using ABPeoplePicker?

I'm not finding Apple's documentation very helpful for actually getting data with a people picker, and there doesn't seem to be much other information on the internet :( I assume I need to get the email in this function: -…
Randall
  • 2,083
  • 2
  • 18
  • 20
1
vote
1 answer

Limit ABPeoplePicker to just one group, not all contacts

In one of my apps I am saving contacts in the address book and putting them in a group I create to differentiate them from the rest of the contacts. Is there a way I could show all the people from that group, but not all the rest of the AB with an…
jcane86
  • 681
  • 4
  • 17
1
vote
1 answer

Find current viewController to push a ABPersonViewController in Titanium Mobile

in an application I'm working on, I need to interact with iPhone's AddressBook. Currently, Titanium mobile doesn't expose the native widget so I decided to write a module to trying to overcome this limitation. As far as I know, the only way to…
Giordano Scalzo
  • 6,312
  • 3
  • 31
  • 31
1
vote
2 answers

Crash in ABPeoplePicker when called from another modal viewcontroller and both dismissed

(Note: I filed this question before in the context of my project, but I've now recreated the crash in a test project. Any help in telling me what I'm doing wrong would be appreciated.) The crash occurs when calling ABPeoplePicker from another modal…
mackworth
  • 5,873
  • 2
  • 29
  • 49
1
vote
2 answers

Get phone number from peoplePickerNavigationController

Overview: I am trying to get the phone number and full name when people use the peoplePicker and clicks on the name. Then, I'd like to display the full name on a textfield and save the phone number as a string. Using the ph num and name, I intend to…
oky_sabeni
  • 7,672
  • 15
  • 65
  • 89
1
vote
1 answer

Display detailed contact card if contact has more than 1 phone number

If a contact has only 1 phone number, I want to select it. If it has more than 1 phone number, then I want to display the detailed contact card. I am using the below method, which works fine. -…
user1324887
  • 632
  • 3
  • 11
  • 32
1
vote
1 answer

ABPeoplePickerNavigationController predicate for enabling selection of the contact with predicateForEnablingPerson

I have an ABPeoplePickerNavigationController as below ABPeoplePickerNavigationController *picker = [[ABPeoplePickerNavigationController alloc] init]; picker.peoplePickerDelegate = self; I need to disable some of the contacts being selected from…
Alex Andrews
  • 1,498
  • 2
  • 19
  • 33
1
vote
1 answer

Convert ABRecordID to NSNumber always -1

I am trying to save an ABRecordID of an existing contact from the Address Book into Core Data. I have an Int32 defined in my model, but in order to save my object there I need to convert the ABRecordID (which is an Int32) into an NSNumber Here is my…
Charlie
  • 1,279
  • 2
  • 12
  • 28
1
vote
2 answers

Need to create a custom view like ABPeoplePickerNavigationController

I want to create a custom view that is just like contacts in iPhone. Is there any tutorial available to make a custom view just like ABPeoplePickerNavigationController? Please note that I do not want to open the default people picker controller…
Nirmit Dagly
  • 1,272
  • 1
  • 12
  • 25
1
vote
1 answer

How do I handle selecting a property in ABPeoplePickerNavigationController?

I am having some trouble with this.. I see that we are supposed to be using the property: predicateForSelectionOfProperty for determining which properties get 'selected', and I'm actually kind of bummed for there not being a…
JP.
  • 544
  • 5
  • 20
1
vote
1 answer

How does WhatsApp add their icon to their contacts tab and favourites tab in iPhone SDK

I have been working on app which needs phone contacts,i am able to get the name and phone numbers from the AddressBook. But want to make tab like whats app has done,they open the default Address Book with icon of whats app in in front of contact…
ankyy
  • 351
  • 6
  • 16
1
vote
0 answers

peoplePickerNavigationController didSelectPerson not called for Linked Contacts

When a user taps a Linked Contact's property using the ABPeoplePickerNavigationController - neither- (void)peoplePickerNavigationController:(ABPeoplePickerNavigationController *)peoplePicker didSelectPerson:(ABRecordRef)person…
YogevSitton
  • 10,068
  • 11
  • 62
  • 95
1
vote
3 answers

ios 8 : ABPeoplePickerNavigationController dismiss on implementing people picker delegate methods

This is strange behavior noticed while accessing contact details from address book in ios 8. My scenario is simple Show contacts table select a row that will invoke didSelectPerson method in didSelectPerson method push SecondViewController -…
Ankit Sachan
  • 7,690
  • 16
  • 63
  • 98
1
vote
3 answers

IOS 8 - ABPeoplePickerNavigationController - Cancel delegate method works, others do not

I've encountered a strange problem in my IOS 8 people picker delegate code. Only the - (void)peoplePickerNavigationControllerDidCancel:(ABPeoplePickerNavigationController *)peoplePicker; { [self dismissViewControllerAnimated:YES…
jmf1205
  • 437
  • 6
  • 23
1
vote
0 answers

IOS 8 Addressbook kABPersonEmailProperty

I developed one application. It is working perfectly in IOS 7. But IOS 8 I have issues. I implement the function get the contact information from address book. So I implement the…
Puvanarajan
  • 2,786
  • 6
  • 26
  • 37
1 2 3
8 9