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

Access "My Info" from iOS app

I'm developing an iOS app for my employers. This app receives data that is always linked to phone numbers. Right now I've implemented a search function that takes the phone number and searches your contacts, retrieves the contact if any with that…
0
votes
3 answers

Add / Check Contact xcode arc

I have one question. I want make i button that when i click on him, he put the new contact into iPhone AdressBook. I see a lot of tutorials but i didn't found a tutorial with check if the contact already exist in the AdressBook. Can somebody help me…
Muckel Buckel
  • 11
  • 1
  • 3
0
votes
2 answers

Different count in Contacts app and ABAddressBookGetPersonCount

When I scroll My Contacts App to the bottom, where it shows the number of contacts, It says 2568 contacts. But in my app when I try to fetch the number of contacts from AddressBook, by ABAddressBookGetPersonCount, I get 2582 contacts. Has Anyone…
Nikita P
  • 4,226
  • 5
  • 31
  • 55
0
votes
0 answers

iOS Search Address book contacts by UISearchBar using NSDictionary with multiple arrays

I am trying to implement search bar in my custom Contacts Book. I created NSDictionary for search data and added to my dictionary 4 mutable arrays, include names, last name, phone types, phone numbers. When I am trying to search in NSDictionary, my…
Anton
  • 3,102
  • 2
  • 28
  • 47
0
votes
1 answer

Save a data collection into a text file

I am new to developing and I am creating an AddressBook using c#. I am trying to save my data collection using my DataLayer class into a txt file. The data collection is displayed in a DataGridView which is located in my AddressBook GUI I would like…
0
votes
1 answer

Save List into a text file using C#

I am developing an Address Book using C#. i have a list which is displayed in an DataGridView but I want to save the list and not the datagridview into a text file. When the form loads i have the code: string[] parts = line.Split(','); // the word…
0
votes
1 answer

Program receives Exc_bad_access signal and crashes

I am issue while accessing the address book of user. My code is ABMultiValueRef email = ABRecordCopyValue(aSource, kABPersonEmailProperty); NSString* email_lbl; for(CFIndex i = 0; i < ABMultiValueGetCount(email); i++) { …
ankit mehta
  • 23
  • 1
  • 6
0
votes
1 answer

How to properly use address book for background thread?

UIImage* image; if(ABPersonHasImageData(self.abRecordRef)){ image = [UIImage imageWithData:(__bridge_transfer NSData *)ABPersonCopyImageData(self.abRecordRef)]; } -(ABRecordRef) abRecordRef { ABRecordRef abR =…
Septiadi Agus
  • 1,775
  • 3
  • 17
  • 26
0
votes
1 answer

How to develop automatically missed call reply messenger iOS mobile application

Nowadays I am thinking about a mobile application (specially for iPhone) and trying to build it for personal use and of course will allow to others too. I want to develop such application, suppose I have iPhone device. My iPhone get missed call in…
Kamar Shad
  • 6,089
  • 1
  • 29
  • 56
0
votes
1 answer

NSNotificationCenter for AddressBook db

I want to identify the address book changes in my app using NSNotificationCenter how to use Please help me.
Karthick
  • 382
  • 1
  • 3
  • 23
0
votes
3 answers

Starting points for creating an application that allows a user to add items to two separate lists

I am firstly new to SO and new to iOS Development. I have completed the CS193P course on iTunes and am ready to tackle my first proper app. I have the prototype set up and just need some reference pointers on where to begin (need that confidence).…
amitsbajaj
  • 1,304
  • 1
  • 24
  • 59
0
votes
1 answer

Reference custom contact source when using ABPeoplePickerView (OS X)

ABPeoplePickerView (OS X) does not appear to allow one to use a custom contact source, instead forced to reference the stock Address Book database. It appears that the corresponding framework in the IOS platform does allow a custom source. Is this…
Ron
  • 3
  • 2
0
votes
1 answer

how to get records of contacts from NSMutableArray in iPhone

I have an array of dictionary for contact details. I am trying to add that record in ABRecordRef, but I don't understand how it works. Here is my code: for (int i = 0; i <= [contactArray count]; i++) { ABRecordRef person =…
0
votes
0 answers

Are ABRecordIDs reused after removing a contact and adding another?

Does apple reuse the ABRecordID in the AddressBook.framework? If I remove a record and add a new one? Or are they looping record numbers after advancing through all MAX_INT values and going back to 0?
cynistersix
  • 1,215
  • 1
  • 16
  • 30
0
votes
1 answer

E-mail dialog box is not open in iphone sdk

In my app, I am fetching the e-mail id from address box using PersonPicker view. When i select any e-mail id, i try to open the e-mail dialog. But it will just open & close immediatly. I can't able to solve this issue. I got code from Here My code…
AtWork
  • 1,283
  • 1
  • 14
  • 34