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

How do I make ABPeoplePicker start at the top each time it opens?

When ABPeoplePicker first loads, it starts at the top of your address book with the search bar displayed at the top. However, once the user interacts with it, it loads to the point where it was last scrolled to. Is there a command or property to…
0
votes
3 answers

why is peoplePickerDelegate not getting address of the delegate right?

The scenario is that I have more than one view that wants to invoke the Address Book. So as not to duplicate the code of the delegate in each view I have located the code in the App Delegate's header and .m file, but using an "@interface…
Ric
  • 796
  • 12
  • 28
0
votes
1 answer

To make ABPeoplePickerNavigationController work like Contact App is way to complicated?

I am trying to make ABPeoplePickerNavigationController work like Contact App and find it is way too complicated. I am not sure if this is because I have done it wrong or it is just the way it is. The first task is to get rid of Cancel button at…
Qiulang
  • 10,295
  • 11
  • 80
  • 129
0
votes
1 answer

How to check if phone number exists for a particular user in address book

I am using the following code to retrieve the user's phone numbers from the address book ABMultiValueRef phones = ABRecordCopyValue(ref, kABPersonPhoneProperty); //EXC_BAD_ACCESS error if a user does not have phone number stored in the address…
Zhen
  • 12,361
  • 38
  • 122
  • 199
0
votes
1 answer

iPhone ABPeoplePickerNavigationController Memory Leaks

I am going through my application killing off all the memory leaks and the analyze tool comes up with a leak using the abpeoplepickernavigationcontroller. I understand it is something to do with a copy method? but don't know how to go about…
MrPink
  • 1,325
  • 4
  • 18
  • 27
0
votes
2 answers

ABPeoplePicker calls the number chosen

I'm using the people picker so the user can choose a phone number from their contacts to use in the app. When the user clicks on the number, the phone app opens and that number is called... Is there any way to stop this?
GeeGoldz
  • 187
  • 2
  • 11
0
votes
1 answer

How can i add new records in ABPeoplePickerView?

i want to add new records in ABPeoplePickerView and want to retrieve that added record so please any body have idea about it.
Ankit Vyas
  • 7,507
  • 13
  • 56
  • 89
0
votes
1 answer

ABPeoplePickerNavigationController and UITableViewController in a UITabBarController

Please see below for my own answer, I figured it out after hours and hours. Hopefully I save someone some time. I currently have a button on my UI that will modally present an ABPeoplePickerNavigationController, which works perfectly fine. I want…
Jason
  • 43
  • 8
0
votes
1 answer

Getting warning in setting delegate for ABPeoplePickerNavigationController

I am trying to build an app with the following code snippets My Interface definition is @interface CreateMessageViewController : UIViewController and the method I am calling as result of Button click is -(IBAction) handleEvents:(id) sender { …
devsri
  • 6,173
  • 5
  • 32
  • 40
0
votes
1 answer

Address Book in an Popover

Does anyone have an example of tell me how I might open up the ABPeoplePickerNavigationController inside a popover. I have the NavigationController that is being used in the popover doing the opening, but it opens up full screen/modal. Am I missing…
smcdrc
  • 1,671
  • 2
  • 21
  • 29
0
votes
2 answers

Weird crash in ABPeoplePicker

I'm using ABPeoplePicker and I'm getting a strange crash: Assertion failure in -[UISearchDisplayController setActive:animated:], /SourceCache/UIKit/UIKit-1447.6.4/UISearchDisplayController.m:589 2011-01-26 22:30:37.041 Watches[3784:307] ***…
mackworth
  • 5,873
  • 2
  • 29
  • 49
0
votes
1 answer

ABPeoplePicker Crash for Only One Person

I have an app that only crashes for one of my tester’s - no one else’s. But it crashes consistently for her. It’s very odd. Details: She has in iPhone 4 and an iPhone 3Gs The app crashes on all OSes on BOTH phones The app crashes with all contacts…
addzo
  • 845
  • 3
  • 13
  • 37
0
votes
1 answer

Issues with alert view, 'delegate' undeclared error

This may be a school boy error, but I am trying to embed a UIAlertView after someone selects a contact property in the peoplePickerNavigationController that is NOT an address. What am I doing wrong to get a 'delegate' undeclared error! Could someone…
0
votes
1 answer

Reload/Refresh an ABPersonViewController

In my app, users can view and edit their Address Book contacts. Right now, I'm trying to support iOS 4 backgrounding. Here's my problem. If a user is viewing a contact, say "John Appleseed" in my app, the user can then switch to the iPhone Address…
0
votes
1 answer

How to fetch contact id in your iOS app?

I am new to iOS and I have fetched contacts in my app, but how to fetch the contact id... suppose if there are two numbers saved with the same name, so how to fetch that particular contact name's id?
1 2 3
8 9