The abrecordref tag has no wiki summary.
0
votes
1answer
80 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;
...
1
vote
1answer
133 views
Source of ABRecordRef (phonebook or icloud)
Me need to find out source of ABRecordRef, because the method bellow returns array of contacts from phone book and icloud and as result there are double contacts with the same person (fierst, last ...
0
votes
1answer
270 views
How would I bridge cast NSNumber to ABRecordID in iOS
I start learning programming with Objective-C, and do not have much knowledge of C. So, bridge casting in iOS 6 is still somewhat confusing for me.
Here is the scenario:
I have a person ABRecordID ...
0
votes
1answer
255 views
ABAddressBookRegisterExternalChangeCallback in the controller not called on done edit
I have a couple of questions related to address book and ABAddressBookRegisterExternalChangeCallback.
addressBook = ABAddressBookCreateWithOptions(NULL, &error);
I am opening a new contact ...
2
votes
3answers
126 views
How to check if the NSMutableArray already has (__bridge id) object in the array
I am trying to add ABRecordRef item into my NSMutableArray. Just learned that It's needed to cast the C TypeDef into Objective-C id type using (_bridge id). So, before adding new items into the array, ...
0
votes
1answer
110 views
Multithreaded Contact sync
I am trying to speed up syncing contacts all the contacts on the device to my app. At the moment its blocking the main thread when syncing the contacts.
I added the individual contact setup in an ...
0
votes
0answers
150 views
Howto ABRecordRef + image larger than 320x320 px?
I'm working with Address Book Framework internally and I'd like to know if it's possible to use an image bigger than 320x320 px in the ABRecordRef opaque type.
I tried to set an image from mainBundle ...
3
votes
1answer
766 views
Load ABRecordRef from ABRecordID in iOS
I'm storing an array of ABRecordID (actually wrapped in NSNumber) into NSUserDefaults. So far so good but now I need to load those into ABRecordRef and can't find what function to use.
I'm just ...
0
votes
1answer
779 views
How to create CFArrayRef
I'm trying to convert just ONE iPhone contact to a vCard using the build in methods. The docs say to use:
ABPersonCreateVCardRepresentationWithPeople(CFArrayRef people)
... but my delegate method ...
0
votes
1answer
185 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 = ...
-1
votes
1answer
503 views
contacts data in xcode
Everybody..
I am trying to develop an app for iPhone which basicly deals with ABAddressBook and contacts data...
My goal is to send all the contacts data (at first step, names and phones) in a file ...
1
vote
1answer
808 views
Add Contact to Existing Group programatically in iphone
I want to add ABRecordRef to existing Group. Some how its not working. Here is my code:
-(void)addUsers:(NSMutableArray*)users toGroupID:(ABRecordID)groupID {
CFErrorRef error = NULL;
...
2
votes
1answer
327 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 ...
2
votes
1answer
437 views
Storing ABRecordRef in Core Data
I would like to store a ABRecordRef in a 'Client' entity in core data.
I have read in apples documentation that ABRecordRef is a primitive C data type. As far as I am aware, you can only insert ...
1
vote
1answer
1k views
Adding a record to Address book
How can I add a new record to address book without using ABPeoplePickerNavigationController ?
1
vote
2answers
256 views
Store array of ABRecordRef
How can we store and access a list of ABRecordRef so that we can use this in another class and later on?
7
votes
1answer
960 views
How can I get a list of all the properties of an ABRecordRef?
I would like to obtain a list of all the properties of an ABPersonRef and ABGroupRef without having to use the iOS predefined keys of kABPersonFirstNameProperty, kABPersonLastNameProperty... I'm ...
0
votes
1answer
244 views
Contact being removed from AddressBook after being Selected
I'm working on some integration between my application and the iPhone's AddressBook. Here is the flow of my program.
User wants to import a contact
App Presents "ABPeoplePickerNavigationController" ...
1
vote
4answers
1k views
Storing data to NSUserDefaults
In my iPhone app, I have a class called Contact which consists of an ABRecordRef to serve as a reference to a particular contact.
I need to store groups of these contacts in NSUserDefaults, but ...
0
votes
3answers
125 views
What should the return type be?
ABRecordCopyValue(thisPerson, kABPersonAddressProperty);
thisPerson is ABRecordRef
Thanks
-1
votes
2answers
694 views
ABGroupCreate problem
I have problem with adding a group to the iOS address book. In the simulator everything works great, I add the group, and assign contacts to it. But when the same application runs on an iPhone or iPad ...
6
votes
1answer
334 views
iPhone: address book is erased sometimes
I use the ABAddressBook in my app.
The access to the AB is from a separate thread in order to release the UI.
I am aware of the fact that the access to the AB instance has to be from the same thread ...

