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

app get crash after contacts gets added from address book to sqlite database

this is how i add contact information in my database from addressbook ABAddressBookRef addressBook = ABAddressBookCreate(); CFArrayRef allPeopleName = ABAddressBookCopyArrayOfAllPeople(addressBook); CFIndex nPeopleName =…
Prakash Desai
  • 511
  • 3
  • 14
0
votes
1 answer

Add a control to new contacts screen in ios

I would like to be able to just add a control to the new contacts screen or override the new contacts screen people see when clicking add contact from the phone answer default screen in the iPhone. Is it possible that as long as my app is installed…
Nick Turner
  • 927
  • 1
  • 11
  • 21
0
votes
1 answer

ABPeoplePickerView Warning NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8

Using Mac OS 10.8.3 and xCode 4.6.1 and using ABPeoplePickerView with a very simple Cocoa App with XIB using ABPeoplePickerView results in an run time warning coming from ABPeoplePickerView: 2013-04-02 21:58:36.848 AddressbookTest[4462:303] **…
JeanNicolas
  • 357
  • 3
  • 9
0
votes
2 answers

fetching only Character of email from address book

i have used following code for getting for getting information from address book ABRecordRef ref = CFArrayGetValueAtIndex(allPeopleName, i ); NSString* personName = (__bridge_transfer NSString*) ABRecordCopyValue(ref,…
user2189388
  • 202
  • 1
  • 4
  • 10
0
votes
1 answer

fetching number from addressbook issue

i am using following code for this purpose ABMultiValueRef phones = (ABMultiValueRef)ABRecordCopyValue(ref, kABPersonPhoneProperty); NSString* mobile=@""; NSString* mobileLabel; for (int i=0; i <…
user2189388
  • 202
  • 1
  • 4
  • 10
0
votes
2 answers

App crashes when adding contacts to group

I have an array of contacts, when I am trying to add a contact into a group, its crash my application. Here is my code : for (int i = 0; i < [contactArray count]; i++) { ABRecordRef newPerson = [contactArray objectAtIndex:i]; …
user2169470
  • 33
  • 1
  • 3
0
votes
3 answers

JAVA: How to sort strings read from file and output to console in alphabetical order?

I'm looking to sort the contacts read from a file in alphabetical order by last name to the console? How would I go about doing so? The contacts are already written to file starting with the last name, I just want to read them back into the…
0
votes
1 answer

How to retrieve 10-10 contacts from address book

I want to implement for getting or loading 10 contacts at a time from address book.Any possibility to retrieve all contacts from address book but display them 10-10 contacts at a time.I am retrieving image,first name,last name of all iphone…
Vidhyanand
  • 993
  • 10
  • 21
0
votes
1 answer

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 https://github.com/soffes/sspersonviewcontroller . New contacts are…
0
votes
1 answer

Displaying addresses in SQLite database as pinpoints in Google Maps in android

I currently am working on developing an android app. I have an SQLite database set up in the app and Google Maps as well (i.e. its displaying the map when the user wants to see it). My problem is that my SQLite database has 3 columns : Name,…
Malik
  • 55
  • 1
  • 12
0
votes
2 answers

How does whats app login work on iphone..?

I am just curious and wanted to know how does what's app show list of all friends..? I mean once you login into the app with your phone number does it get all the contacts phone number from Address book and send it to server (Is this ok to do ? can…
Ankit Srivastava
  • 12,347
  • 11
  • 63
  • 115
0
votes
1 answer

iOS Referencing NSMutableArray Within an Object - Deciphering Syntax

xCode iOS not registering: currentCard = [myBook getCard:cardIndex]; Having some difficulty calling a get method (name), for a string, within an Object(addressCard) at a particular index(int index), within an NSMutableArray(book), within an…
user1815714
  • 13
  • 1
  • 4
0
votes
1 answer

Backup contacts sample code or example from iPhone

I want to take backup of my iPhone contacts using iCloud. How it is possible to take a backup programmatically in my iPhone application? Is there any sample code or example?
newDev
  • 103
  • 3
  • 11
0
votes
2 answers

How to create a addressbook and contacts

I have created a code for Addressbook and contacts where display the contacts.It was working properly but suddenly getting Run time error .As I'm new to ios .I'm not able to find the error can any one in the Stack Overflow tell the error. -…
reddy
  • 13
  • 10
0
votes
1 answer

Exchange global address list (GAL) access from unix

What are the ways of accessing exchange global address list(GAL) and doing some operation on them (like finding manager of a contact, etc.) in unix? This can be done in pretty straightforward way in VBA Outlook App in windows. I am trying to find…
krips89
  • 1,683
  • 4
  • 17
  • 32