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

Sending invitation from contact list in iPhone

In an app I have to send invite through contact details in iPhone. I know that contact details can be fetch by ABPeoplePickerNavigationController.And on a button action, I am able to get contact details. Now, on selecting any contact name I should…
iCoder4777
  • 1,682
  • 1
  • 14
  • 35
0
votes
1 answer

Setting person properties

Working on someone else's code. I am really confused about whats exactly happening in this code. ABAddressBookRef addressBook = ABAddressBookCreate(); ABRecordRef persons = ABAddressBookGetPersonWithRecordID(addressBook, x); CFErrorRef…
Xavi Valero
  • 2,047
  • 7
  • 42
  • 80
0
votes
1 answer

Should I use ABPersonViewController or ABUnknownPersonViewController

I am showing the details of a person using ABPersonViewController. Now I have a case, where I have to show the record(details) of a person, who is not in my addressbook. I have the properties(Name/Phone number/email/address) of this person. I don't…
Xavi Valero
  • 2,047
  • 7
  • 42
  • 80
0
votes
3 answers

Can not Edit Address Book Record from iphone app

I want to edit record from address book in my iphone app. But I can not edit any record. Here is my code // In my First View Controller - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { …
iOSAppDev
  • 2,755
  • 4
  • 39
  • 77
0
votes
2 answers

Showing mapview on click in addressfield

I have a class that subclasses ABPersonViewController. On clicking the address field in the PersonViewController, I need to show the corresponding address location in the mapview, just like what it is in the native addressbook. How can I implement…
Xavi Valero
  • 2,047
  • 7
  • 42
  • 80
-1
votes
1 answer

Prompt ABPersonViewController with uniqueID

I want to load a existing contact using the address book view controller using only the uniqueID of the contact. How can a "person" record be defined using only the uniqueID? ABPersonViewController *view = [[ABPersonViewController alloc]…
user2228755
  • 397
  • 1
  • 2
  • 10
-1
votes
1 answer

Done button in abpersonviewcontroller not saving ios

When i hit done in the edit mode of the person view controller it doesn't save to the address book. It goes to the previous screen and shows the new data. However in the contact app nothing changed. …
VBK
  • 1,435
  • 1
  • 15
  • 34
1 2 3 4 5
6