ABPersonViewController is an iOS class that provides a view for displaying a person record.
0
votes
1answer
20 views
EXC_BAD_ACCESS when using an ABPersonViewControllerDelegate
I have an iOS app that shows a list of contact names in a UITableView, and displays a contact with ABPersonViewController when a cell is tapped. This project uses ARC. If I associate an ...
-2
votes
1answer
48 views
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.
...
0
votes
0answers
33 views
How to make ABPersonViewController to pop up after deleting a contact
ABPersonViewController *picker = [[ABPersonViewController alloc] init] ;
picker.personViewDelegate = self;
picker.displayedPerson = person;
...
0
votes
1answer
62 views
How to display phone numbers and email and names of a user?
This is what I have tried:
-(void) vDisplayPerson:(ABRecordRef)person
{
ABPersonViewController *picker = [[ABPersonViewController alloc] init] ;
picker.personViewDelegate = self;
...
0
votes
1answer
99 views
ABPersonViewController without access to the addressbook
I am implementing an application in which the user should be able to import a contact from the address book or to provide a contact themselves.
I implemented everything using ...
0
votes
0answers
36 views
Share Contact like functionality in ios application
I would like to implement share contact like functionality of contacts on an iPhone in my applications.
Basically looking to press a button programatically fill out ABRecordRef object and allow user ...
3
votes
0answers
113 views
Iphone ABUnknownPersonViewController using allowsAddingToAddressBook = YES issue
Let me explain what i want to do first. In native Iphone in the Recents tab if you click on a contact not found in any addressbook you have an option to "Add to Existing Contact"
After clicking ...
1
vote
0answers
183 views
ABPersonViewController with Custom Buttons in View
I want to add custom buttons to the bottom of my ABPersonViewController. I do not want to just enable allowsActions because I do not want the default behavior. Instead I have thought about 2 ways to ...
2
votes
4answers
171 views
Segue to ABPersonViewController in Storyboard
I am trying to segue to a ABPersonViewController from a button in the Storyboard.
But if I do that the screen is completely black.
If I use a IBAction for the button and use the following code it ...
2
votes
1answer
164 views
Is it possible to update linked contacts from my iOS app using ABPersonViewController?
My app allows the users to import contacts from their address book and store them in our CardDAV server. I'd like keep the contacts on our CardDAV server with all other linked contacts in the address ...
0
votes
0answers
76 views
ABPersonViewController Editing can't take photo or add photo - on iPad Only?
Got a ABPersonViewController picker. Have done this:
ABPersonViewController *picker = [[ABPersonViewController alloc] init];
picker.displayedPerson = person;
...
0
votes
0answers
190 views
ABPersonViewController in Modal
I would like to display ABPersonViewController as a modal instead of pushing it on the navigation stack. I've got this working but to keep a done button present I've had to use an NSTimer to add the ...
2
votes
2answers
46 views
How to check whether all fields are empty in ABNewPersonViewController
I have a custom button in ABNewPersonViewController. I need to enable the button, only if any(at least) one of the fields in ABNewPersonViewController is edited. Is there any way in which I can check ...
0
votes
1answer
64 views
Change navigation title for ABUnknownPersonViewController
So I would like to change the title for the ABUnknownPersonViewController, and so I set it via code by setting the navigation item's title and titleView to put my custom label on it.
...
0
votes
0answers
169 views
iOS 6 abpersonviewcontroller. custom button disappears
I am subclassing ABPersonViewController and adding two custom button into the navigation bar from viewDidLoad .When running my app in iOS 6 device the custom button i added is getting disappeared ...
0
votes
1answer
120 views
ios5, ABPersonViewController - notify when person's record is updated?
I have a UITableViewCell that displays person's name from Address Book. When that cell is selected, the person's info is displayed using ABPersonViewController (where editing is ON).
What I want to ...
0
votes
1answer
130 views
Take the selected phone number [iPhone]
I'm trying to take phone number from the Contacts on the iPhone.
I implemented the
-(BOOL)peoplePickerNavigationController:(ABPeoplePickerNavigationController *)peoplePicker ...
1
vote
1answer
198 views
How to refresh PeoplePicker after deleted contact? iOS
I implemented a ABPeoplePickerNavigationController and ABPersonViewController. I did however, add the peoplepicker to a tabbarcontroller, it is no longer presented modally. The tabbarController keeps ...
0
votes
0answers
34 views
ABPersonPickerNavigationController issue
I am stuck with the issue With ABPersonPickerNavigationController,
In which a functionality is working with iPhone contact list.
Basically when user give a action from a button then a contact list of
...
0
votes
0answers
67 views
MFmailcomposer issue with ABPersonViewControllerDelegate
May be my question is stupid but i need idea for restricting mailcomposerview.
Actually when i fetch email id through ABPersonViewControllerDelegate it will comes on the app label view. but it ...
1
vote
0answers
31 views
ABPersonViewController not locating address on map
Any ideas as to why presenting an ABPersonViewController with its delegate won't locate an address of a selected person on the map?
Currently, the app just quits to Maps and stays there zoomed out.
...
0
votes
0answers
82 views
Cocoa (for Lion 10.7) ABPersonView shows blank fields when multiple controls used
First off, sorry about the ABPersonViewController tag...it wouldn't let me create ABPersonView tag because of lack of reputation. ABPersonView is in Cocoa for Mac. ABPersonViewController is ...
0
votes
1answer
117 views
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 ...
2
votes
1answer
546 views
Handling click events inside ABPersonViewController
I am implementing
- (BOOL)personViewController:(ABPersonViewController *)personViewController shouldPerformDefaultActionForPerson:(ABRecordRef)person property:(ABPropertyID)property ...
0
votes
1answer
179 views
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 = ...
0
votes
1answer
256 views
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 ...
1
vote
1answer
410 views
Directly open ABPersonViewController in EDIT MODE DIRECTLY in iphone
I am developing address book app. When user selects a user from a contact list , I want to open that record directly in EDIT mode using ABPersonViewController instead of clickng Edit button of ...
0
votes
2answers
226 views
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 ...
0
votes
2answers
73 views
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 ...
2
votes
1answer
313 views
Can not dismiss ABPersonViewController in iphone
How can I dismiss the ABPersonViewController ? Here is my code
#pragma mark - Edit Record Method
-(void)btnEditContactTapped:(id)sender {
// Fetch the address book
ABAddressBookRef ...
0
votes
3answers
159 views
ResignFirstResponder in ABNewPersonViewController after editing
On a class that subclasses ABNewPersonViewController in edit mode, I am loading a transparent view(xib file).
When I am doing some edits, the keyboard pops up and even after I am loading the next ...
0
votes
1answer
133 views
Merge contact details with existing contact
I'm trying to select a user in the addressBook using ABPeoplePickerNavigationController then once a user has been selected, within the delegate method
...
0
votes
1answer
1k views
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, ...
0
votes
0answers
193 views
ABRecordRef ARC with NSMutableDictionary
So I use an ABRecordRef in my app, and I want to add the address of the person to the label. Prior to ARC, I would've done it as follows:
ABMutableMultiValueRef multiAddress = ...
1
vote
2answers
485 views
ABNewPersonViewController delegate method doesn't get called when the button action is triggered
I am using ABNewPersonViewController.
I am saving the Done button(rightBarButtonItem of ABNewPersonViewController) to another button, so that the delegate method
- ...
4
votes
1answer
1k views
How can I override the “Done” button in ABNewPersonViewController
I have a class that subclasses ABNewPersonViewController. As I understand, when the Done button in the navigation bar is clicked, the delegate method
- ...
0
votes
2answers
511 views
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 ...
3
votes
1answer
251 views
ABPersonViewController “add to favorites” action strange behaviour
I'm using ABPersonViewController to show contact info. I want to allow user to perform standard actions, like Text message, Share contact, Add to favorites.
When I tap Add to favorites, near the ...
0
votes
1answer
671 views
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 ...
0
votes
1answer
283 views
Adding footer view in ABPersonViewController
I've tried to add 'delete contact' button in ABPersonViewController.
already knows undocumented method is there, but that's not what I want.
(I also tried to set tableFooterView for tableview in ...
0
votes
2answers
345 views
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 ...
0
votes
1answer
108 views
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 ...
0
votes
1answer
1k views
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 ...
1
vote
2answers
644 views
Customize ABPersonViewController
Is it possible to add custom UITableViewCell row in addition to built-in email, phone rows inside ABPersonViewController?
I would like to add buttons like add, remove, etc in that cell, which will ...
0
votes
1answer
405 views
how can I display a UIPersonViewController 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 ...
0
votes
1answer
443 views
iOS PersonViewController
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 ...
0
votes
2answers
336 views
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 ...
1
vote
1answer
202 views
Can I create a custom nib for UnknownPersonViewController without using an “undocumented api”?
I'd like to add some custom buttons to an ABUnknownPersonView. Can I use initWithNibName:bundle: in my ABUnknownPersonViewController to load a custom view that I've created in IB, while not using an ...
0
votes
1answer
417 views
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 ...
0
votes
2answers
794 views
ABPersonViewController delete button warnning
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 ...

