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
2
votes
1 answer

Swift: Edit ABPersonViewController

I'm trying to set up my app so that when a specific contact is opened from the ABPeoplePickerNavigationController, in the ABPersonViewController, there's an edit button in the top right corner. I know questions very similar to this have been asked…
5813
  • 1,073
  • 3
  • 14
  • 28
2
votes
2 answers

ABPeoplePickerNavigationController programmatic searching?

I want to pull up the user's address book and use the new PeoplePicker controller to slice the results to show just those that match a certain term. I see that UIPeoplePickerNavigationController has a search bar and search view embedded in it. Looks…
Dan Ray
  • 21,623
  • 6
  • 63
  • 87
2
votes
2 answers

People Picker with ios 7, and ios 8

I have people picker working on ios 7, and I'm trying to add compatibility for ios 8. I've added both methods into one but I get an error that says expected identifier or '(' on the opening bracket before NSString *contactName. Any suggestions would…
abdiel.ramirez
  • 125
  • 2
  • 13
2
votes
2 answers

ABPeoplePickerView - How do I get it to scroll to a selected record?

I'm using the ABPeoplePicker in a Mac OS X application. I've hooked up a button that changes the selected record to the default 'Me' record. This works fine, and the record gets selected, but, I need to scroll the table to see the selected…
Abizern
  • 146,289
  • 39
  • 203
  • 257
2
votes
2 answers

How to hide/Remove the search bar on Contact Picker

I am adding a contact picker in my app, however, I do not want the search functionality. How to hide/Remove the search bar on Contact Picker (ABPeoplePickerNavigationController)?
Nikita P
  • 4,226
  • 5
  • 31
  • 55
2
votes
1 answer

Automatically enter search mode after presenting ABPeoplePickerNavigationController

I am using the ABPeoplePickerNavigationController class provided by Apple to let the user pick a contact. In this list the user can start searching by tapping into the searchBar. However I want that the user doesn't need to tap the searchBar and…
pre
  • 3,475
  • 2
  • 28
  • 43
2
votes
1 answer

Address Book Retrieving Mobile, Work, and iPhone phone numbers

I started developing a settings page for my app. On this page, the user can tap a "+" button which will open the ABPeoplePickerNavigationController. When the contact is tapped, the text fields on the settings page will be filled appropriately with…
doc92606
  • 691
  • 2
  • 11
  • 32
2
votes
1 answer

Got a SIGSEGV while setting the Text of my TextField from a ABPeoplePickerModule

In my App the User needs to type in some Address Information. I provide an Addressbook Button for that since Version 1.0. That worked fine in my previous tests, but now I get a SIGSEGV when I try to set my UITextField.Text property. This error…
SYNT4X
  • 210
  • 2
  • 15
2
votes
2 answers

Objective c - send SMS / email to one of contacts in adress book

I'm using ABPeoplePickerNavigationController to show the adress book users, and I return YEs in shouldContinueAfterSelectingPerson to see the user's phone & email. But when I tap on the phone or email, nothing happens.. and I want it to send sms or…
user1590031
  • 308
  • 1
  • 5
  • 15
2
votes
2 answers

iOS Getting selected contacts' email address in array

What I'm trying to do is show the people picker to the user, make him select all the contacts he wants, and finally get all those contacts' email addresses in an array. The best would be showing only contacts with email to the user. Until now the…
Aleph72
  • 877
  • 1
  • 13
  • 40
2
votes
4 answers

get image from address book and stored it to NSmutablearray but while showing it gives `EXCBAD Error` in iphone sdk?

hi i am creating custom address book in this i want to get only this users who have email address all things work perfectly but when i try to show image in tableview it gives me EXCBAD Error. i have code like this ABAddressBookRef…
Hrushikesh Betai
  • 2,227
  • 5
  • 33
  • 63
1
vote
2 answers

Remove cancel button in ABPeoplePickerNavigationController. Strange behavior in iOs 4.x

I would like to remove the cancel button in the navigation bar of ABPeoplePickerNavigationController because I want to have an add button. I customized the navigation controller delegate in this way: -…
1
vote
1 answer

ABPeoplePickerNavigationController saving larger image takes a LONG time

I use ABPeoplePickerNavigationController to import iPhone Contacts into my app. I recently decided, instead of just saving the thumbnail image, to save the entire image as well. With iPad and possibly needing larger images with different cropping, I…
SAHM
  • 4,078
  • 7
  • 41
  • 77
1
vote
1 answer

Is it possible to setContentInset of ABPeoplePicker & UIImagePickerController?

I know it's possible to add a inset for a UITableView like so: [self.tableView setScrollIndicatorInsets:UIEdgeInsetsMake(5, 0, 46, 0)]; [self.tableView setContentInset:UIEdgeInsetsMake(5, 0, 46, 0)]; Is it possible for a ABPeoplePicker &…
1
vote
1 answer

How to push a ABPeoplePickerNavigationController?

I am having some trouble while using ABPeoplePickerNavigationController. I am developing an ipad application. I wanted to push ABPeoplePickerNavigationController to my navigation controller hierarchy. I know how to extract viewcontroller from a…
iSagar
  • 107
  • 1
  • 11
1 2
3
8 9