Questions tagged [abpersonviewcontroller]

ABPersonViewController is an iOS class that provides a view for displaying a person record.

ABPersonViewController is a public class provided by Apple in iOS 2.0 and newer, which implements a view to display an ABPersonRef record. It displays all of the public fields of an ABPersonRef, the contact photo, and provides actions (such as viewing a map when tapping on a street address).

82 questions
0
votes
1 answer

How to add annotation in mkmapview

I have created a person object ABRecordRef person = ABPersonCreate(); I set the properties of person from my web services. person has all the properties set, like first name, last name, email id, phone number, address, url etc. I want to load a…
Jean Paul
  • 2,389
  • 5
  • 27
  • 37
0
votes
2 answers

Customizing contacts display in iPhone app using ABPersonViewController

Our application uses the ABPersonViewController class to display the iPhone's contacts. I see that when I display a contact, there are no "action" buttons displayed, such as "Text Message" or "Add to Favorites". When accessing the native Contacts…
user600222
  • 81
  • 1
  • 7
0
votes
1 answer

unable to display in address book using ABNewPersonViewController

I am quite new to objective C , I am using XCode 4.2 and in a part of the application I will need to save data in the address book . but I need it to be displayed in the address book and not just save it on a button click I am trying to use the…
0
votes
2 answers

ABPersonViewController won't show on Push

So here's the scenarion, I've got a SearchController that displays filtered results from my apps list of contacts and that present in my addressbook as well. The code that pushes the ABPersonViewController is present in my didSelectObject:atIndex…
BearDroid
  • 553
  • 1
  • 6
  • 16
0
votes
1 answer

App crashes when contact number that contains a "+" is selected

I have an iPhone app. The user can select a contact. Upon selection another view is opened where the user has to select a phone number. This works great. However when the phone number contains country code like this +49 ... the app…
DarkLeafyGreen
  • 69,338
  • 131
  • 383
  • 601
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 can I display a ABPersonViewController with Edit button in a UIPopOverController

I am trying to enabling the editing of a Contact in a universal app, with a ABPersonViewController displayed in a UIPopoverController. The person does get displayed, but there is no Edit button. In actual fact, I would prefer it if the user saw the…
0
votes
1 answer

iOS ABPersonViewController

I have a tab bar app and in the first tab I have some buttons and a table view which is populated with contact info from Address Book. I am trying to show the contact info using the ABPersonViewController as a modal view when the accessory button of…
0
votes
2 answers

How to get ABPerson from an IntPtr using Monotouch

Is there a way in Monotouch how to get ABPerson object from an IntPtr. I'm using ABPeoplePickerNavigationController and its ABPeoplePickerNavigationControllerDelegate. I have to read some properties of selected person in method ShouldContinue. My…
0
votes
1 answer

ABPeoplePickerNavigationController in a TabBar Application

I am building an iPhone application that should look just like Apple's Dialer application. the thing is that i have some problems with it. Apple's controllers are very hard to work with, and have to many problems, maybe someone here can help me? I…
0
votes
1 answer

ABPersonViewController delete button warning

I have an iPhone application that I use the ABPersonViewController and I allow delete. The thing is that the application is a TabBar application and when i use the regular delete method I get this warning: Presenting action sheet clipped by its…
0
votes
1 answer

deleting a contact from address book using personViewController

I am getting hand over the address book and created it successfully without any option of 'deleting a contact' from address book. Is there any method to delete contact from address book. I got help from iOS reference library. I am using…
Ketan Shinde
  • 1,847
  • 4
  • 18
  • 38
0
votes
1 answer

How to get creation date of contact Using AddressBook in iOS

I have to export iOS device contact data and filter using "contact creation date" .Is it possible to do using Objective C ?
0
votes
1 answer

How can I make a phone call by tapping the phone cell of the ABPersonViewController?

Until iOS 7 I was able to display a ABPersonViewController with the related contact info and by tapping on the phone cell I was able to make a phone call. In iOS 8.3 that I am testing now, this does not work. However tapping on the email cell opens…
Yiannis Mpourkelis
  • 1,366
  • 1
  • 15
  • 34
0
votes
1 answer

How to change ABPeoplePickerNavigationController backButton color?

I use ABPeoplePickerNavigationController to get all contacts. I change the tintColor with [[UIBarButtonItem appearanceWhenContainedIn:[ABPeoplePickerNavigationController class], nil] setTintColor:[UIColor whiteColor]];, but when it push, the…
magic_9527
  • 243
  • 3
  • 18