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

How to sync data from address book to server?

Hello everyone I have a remote database of users which contains emails. Now i have my app which has to list all contacts emails from the address book and check if the user is already registered on the database. I am thinking to send all email and…
veereev
  • 2,650
  • 4
  • 27
  • 40
0
votes
1 answer

Verify address book contacts iOS from PHP server

I need to check which of my addressbook users are using my iOS app (using their emails). To do this, I send a contacts list to my PHP server and check for emails, which are already registered. Then, I return an array of users and show them in an iOS…
Ali Shahid
  • 516
  • 1
  • 5
  • 21
0
votes
1 answer

Editing contact picture programmatically on receiving the call , does Apple allows that?

I am developing the App, When i receive the call ,I am changing the contact picture of that person who has called , I am fetching his number from the server , i know i cannot access the incoming number ,so by developing this kind of application will…
krish
  • 641
  • 3
  • 9
  • 26
0
votes
0 answers

Is there a address book app compatible with django 1.5 ('verify_exists')

As in title- I'm too lazy to code such a basic functionality found django-addressbook but it's incompatible with 1.5 because of verify_exist depreciation. My first thought was to fall back to django 1.4 but I need to keep focus on security with this…
Lord_JABA
  • 2,545
  • 7
  • 31
  • 58
0
votes
2 answers

IOS (AddressBook) - Unable to retrieve value of kABPersonFatherLabel and other labels

I am able to retrieve properties from an ABRecord easily. Ie: NSString *firstName = (NSString *)ABRecordCopyValue(person, kABPersonFirstNameProperty); But I am struggling to find a way to retrieve the value of CFStringRef constants from the…
PersuitOfPerfection
  • 1,009
  • 1
  • 15
  • 28
0
votes
1 answer

ABPersonRemoveImageData working locally but not updating iCloud

I have application managing the iPhone/iPad contacts, one of the functionalities is to delete a specific tag for multiple contacts. All the tags work perfectly fine, after removing the tag data, it get reflected on the iCloud and other devices for…
Net Solver
  • 127
  • 1
  • 7
0
votes
2 answers

Address Book is returning old values

I am having a problem with the AddressBook framework. It all seems to be stemming from ABCopyRecordForUniqueId returning a record with old data. Example: I run up the program below in one terminal window - it shows the current data. I make a change…
0
votes
1 answer

AddressBook loaded in a Tab's View

I have what I thought would be a simple task. I have a sample project that will let a user click a button to pull up the AddressBook user interface within a view. From what I see most of the work is done here: -(IBAction)…
0
votes
1 answer

How to fetch XLS data in iPhone?

I want to make an iPhone application which fetches XLS data from mail attachments and adds it into the iPhone AddressBook. I am new to the iPhone SDK. Can anyone help me?
priya
  • 3
  • 2
0
votes
2 answers

ABPersonCopyImageData leaks

I have big problem with getting images from AddressBook, below I paste my code. This imageData never has been deallocated, on my Allocations Instruments it looks that it`s always in memory it never release. @autoreleasepool { CFDataRef…
0
votes
1 answer

How to retrieve Mobile number from Address book iOS

I have got every person's name and email and I want to retrieve person's mobile number based on these two variables. I don't want to retrieve every person's mobile number(along with name and email). Just for the one on which user taps. How can I…
Ali Shahid
  • 516
  • 1
  • 5
  • 21
0
votes
0 answers

Contacts Doesn't Insert into android device

I am importing contacts from csv file. i have tried importing using applybatch but it is taking too much time.So i have used bulkinsert method to insert contacts.But Contacts are not created.Below is the code. for (int y = 0; y < firstcon.size();…
hemanth kumar
  • 3,068
  • 10
  • 41
  • 64
0
votes
1 answer

Taking contact information and putting it into a UITableView

I am creating an app where you press a button and it opens up your contacts list. You can then select the contact you want to add and it imports their name and email into the app. I currently have that information going into labels but I want to add…
Dan Grueneberg
  • 215
  • 1
  • 4
  • 9
0
votes
1 answer

Add contact to Address Book Button

I'm doing and App in IOS and I want to add a Button that when people clik it it automatically add the contact (name, number and Picture) in the phone contact list the contact name is Clinica Lo Curro and phone No. is 6003667800 Someone can please…
0
votes
2 answers

Is there a way to access the user's own address book data (first & last name, e-mail) in iOS?

I want to prefill some input fields in an app's registration process in order to make it more seamless. Is there a (Apple authorized) way to access this data? Thanks, Georg