Questions tagged [addressbook]

An address book or a name and address book (NAB) is a book or a database used for storing entries called contacts.

An address book or a name and address book (NAB) is a book or a database used for storing entries called contacts. Each contact entry usually consists of a few standard fields (for example: first name, last name, company name, address, telephone number, e-mail address, fax number, mobile phone number). Most such systems store the details in alphabetical order of people's names, although in paper-based address books entries can easily end up out of order as the owner inserts details of more individuals or as people move. Many address books use small ring binders that allow adding, removing and shuffling of pages to make room.

Source

926 questions
0
votes
1 answer

rails models for address books (company, person, address)

I want to create address-book-like set of models to represent company, person, location, etc. This looks like very typical address book, I wonder if somebody did it already with ruby on rails 3. The question appeared not (only) because of my…
zeliboba7
  • 335
  • 1
  • 10
0
votes
1 answer

ABUnknownPersonViewController with UIViewController

I want to use ABUnknownPersonViewController with UIViewController .but apple library says that Important: Unknown-person view controllers must be used with a navigation controller in order to function properly. I am using this with UIViewController…
PJR
  • 13,052
  • 13
  • 64
  • 104
0
votes
1 answer

ABMultiValueCopyValueAtIndex allow release twice?

ABMultiValueRef phones = ABRecordCopyValue(ref, kABPersonPhoneProperty); if ( phones ) { for(int i=0;i
m841lr
  • 1
  • 1
0
votes
2 answers

iOS/iPhone programming. Address book. Extra property for user/contact

I'm developing an iPhone application which uses standard iPhone address book (database) of contacts. I need to add some extra property to contacts but as I see iOS API does not permit addition of extra/custom properties to contacts. Questions: 1. Is…
Exterminator13
  • 2,152
  • 1
  • 23
  • 28
0
votes
1 answer

What's the iOS < 9 alternative to CNLabeledValue?

I have implemented both the framework for Contact and AddressBook in order to fetch contacts from the contact book for users both above and below iOS 9. In order to press a row to access another view to see the contact information I have used…
0
votes
1 answer

Issue while adding multiple addressed to addressbook in iPhone programmatically

I am adding Multiple addresses to my address book, but when I try to insert more then one address, like first I'll insert Work address and then If I insert the Home Address, the code will insert the Home address and removes the Work address. Here…
V.V
  • 3,082
  • 7
  • 49
  • 83
0
votes
2 answers

Please assist with Unable to Import Offline Outlook Addresses to WF

I am trying to import the list of email addresses from Offline address list to a combo box, it seems to work fine in finding the List however, everytime I try to pull the data, it freezes the whole app, and when putting it into the Form_Load, the…
majdinuk
  • 13
  • 3
0
votes
1 answer

Cannot highlight ABPersonViewController property

I can't seem to get ABPersonViewController to highlight the property I want. The controller displays fine with the correct person. The phoneNumberIdentifier is a reasonable value (0 or 1 depending on the contact) and returns the correct phone number…
David Beck
  • 10,099
  • 5
  • 51
  • 88
0
votes
1 answer

iPhone address book external change call back

I'm developing app with using of native address book. I've registered a callback to receive a notification when address book has changed externally. ABAddressBookRegisterExternalChangeCallback(myAddrrbook, changefunction, self) My app can make new…
Alex
  • 1
  • 2
0
votes
1 answer

Saving contact details to existing contact using GTMABAddressBook

Using Google Toolbox for Mac I am trying to add contact details to an existing contact on my iPhone upon selecting it in a ABPeoplePickerNavigationController. No errors are reported by GTMABAddressBook as I confirmed by stepping through the process…
Johan Kool
  • 15,637
  • 8
  • 64
  • 81
0
votes
1 answer

How to access blue iPhone contacts icon

Does anyone know how to make use of the little contacts icon that appears at the right side of the search bar in the Google Maps application? I mean the little blue one which you tap when you want to select a contact from your Address Book. I'm…
beev
  • 1,197
  • 2
  • 16
  • 33
0
votes
1 answer

Navigation Controller strategy with an Address Book picker

So I'd like to have a user select a contact using the People Picker and THEN enter some custom data once a contact has been successfully selected. Simple enough. My question is where is the best place for my…
Meltemi
  • 37,979
  • 50
  • 195
  • 293
0
votes
2 answers

Why is this generating a warning?

ABMutableMultiValueRef *address = (NSString *)ABRecordCopyValue(thisPerson, kABPersonAddressProperty); for (CFIndex i=0; i < ABMultiValueGetCount(address); i++) { CFDictionaryRef dict = ABMultiValueCopyValueAtIndex(address, i); The code works…
Cocoa Dev
  • 9,361
  • 31
  • 109
  • 177
0
votes
1 answer

Creating an iPhone contact in Objective-C

I am trying to create a contact in the internal address book. My code is as follows: in the CreateNewAccountPage.h file: #import #import #import #import…
Peter
  • 1
  • 1
0
votes
2 answers

ABNewPersonViewController in a subview

I am writing an iPad app that requires the user to enter names and addresses and would like to use ABNewPersonViewController as the interface. The documentation says that this view controller should only be used from within a navigation controller.…
Vic320
  • 1,105
  • 2
  • 10
  • 22