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
2 answers

addressbook peoplePickerNavigationController

I am not able to declare @synthesize mCallnumber in Callmethod.If i declare it is throwing error and when i try declaring it in header then also it throws error and app gets terminated.Kindly help as i am very new to this Objective-C. …
reddy
  • 13
  • 10
0
votes
2 answers

iOS: Can someone explain CFDictionaryRef for me?

I'm doing some testing on AddressBook and though I can get the data I am looking for I'm curious about how it is delivered. Specifically CFDictionaryRef. When I cast this to a NSDictionary and log to console I just get a string value, not a…
PruitIgoe
  • 6,166
  • 16
  • 70
  • 137
0
votes
1 answer

What are the IB objects used in Mac OS X's Address Book?

Does anyone know what are the types of UI objects used in Mac Address book to edit the address components? I have started my first Cocoa application and in many instances I would like to have this look and feel as opposed to simple table views.
0
votes
1 answer

CardDAV and OS X Server

My intention is to build our company intranet, and store the contacts centrally on our Snow Leopard Server using the Address Book Server functionality. However, I can't for the life of me figure out how I'm supposed to modify the cards. CardDAV…
Ryan
  • 5,416
  • 1
  • 39
  • 36
0
votes
3 answers

I fetch contact in addressbook iphone 4s not working

+(NSMutableArray *)getLastName { ABAddressBookRef addressBook = ABAddressBookCreate(); NSMutableArray *lastNameArray = [[NSMutableArray alloc]init]; ABRecordRef source = ABAddressBookCopyDefaultSource(addressBook); CFIndex…
Ramesh
  • 43
  • 12
0
votes
1 answer

Address Book: custom phone number labels when Exchange set up

I have an app with partial copying of native Contacts app functionality. Then, I meet such bug: on some devices, I create new contact, add phone number with kABPersonPhoneIPhoneLabel, save it and read later, the number has no label! When…
Dmitry Salnikov
  • 337
  • 5
  • 16
0
votes
1 answer

CFArrayGetValueAtIndex won't get the social profiles

I can't get the social profile informations (twitter, facebook) at CFArrayGetValueAtIndex if I try it. Every other information like name, number, www I'm getting it. I have created a vCard with ABPersonCreateVCardRepresentationWithPeople, if I try a…
kurtanamo
  • 1,808
  • 22
  • 27
0
votes
1 answer

How to use ABPeoplePickerNavigationController in MonoTouch to pick a specific email address or phone number of a contact?

I have been using the ABPeoplePickerNavigationController in a project, written in MonoTouch, to pick a specific email address or phone number of a contact. The code set a delegate, and in the delegate I implemented the ShouldContinue method, and…
Lasse V. Karlsen
  • 380,855
  • 102
  • 628
  • 825
0
votes
1 answer

Accessing all addresses of a certain group

I know how to get all people from the address book with ABAddressBookCopyArrayOfAllPeople() but how do I get a list of the different groups and more specifically how to I get contacts from a certain group. I tried my luck with kABGroupNameProperty…
Joseph
  • 9,171
  • 8
  • 41
  • 67
0
votes
1 answer

ios - Addressbook with duplicated entries

Possible Duplicate: Dealing with duplicate contacts due to linked cards in iOS' Address Book API I had a Addressbook working just fine, with the new permission issue of the ios 6.0 fixed. Now the problem is that I've a lot of duplicated contacts.…
fabio santos
  • 275
  • 1
  • 5
  • 15
0
votes
1 answer

postcode checker for UK

I want to use an postcode checker. Here I will put post an postcode in textbox. then it automatically filter all UK addresses related to that postcode. From where will I get this api? Is it payable or free? And also provide how to use this api.…
Ripa Saha
  • 30
  • 7
0
votes
1 answer

Use of undeclared identifier 'kABNicknameProperty' in iOS AddressBook - why?

I'm trying to fetch the name and birth date of an address book entry on iOS (5.0+) and I found a way of doing so with the documentation and this post. But I always get the error mentioned in the title for all the 'kAB...' constants although I'm sure…
CGee
  • 1,650
  • 5
  • 20
  • 31
0
votes
1 answer

How to copy address book image and display it in table view?

How to copy images of all address book contacts onto an array, and later display it in Table view?
ibiren
  • 673
  • 6
  • 25
0
votes
1 answer

Exception Codes: KERN_INVALID_ADDRESS at 0x0000003d

I am using address book framework for my application and I have got crashes on that code. That code is shown below +(NSMutableArray *)getcontactdetails { [self current_function_name:@"Inside getcontactdetails"]; NSMutableArray *list =…
ios
  • 552
  • 5
  • 22
0
votes
2 answers

Not creating address book object

I have implemented the code to get contact list form address book. For that I have used this code ABAddressBookRef addressBook = ABAddressBookCreate( ); CFArrayRef allSources = ABAddressBookCopyArrayOfAllPeople( addressBook ); CFIndex nPeople =…
ios
  • 552
  • 5
  • 22