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

Use of undeclared identifier PhonesViewController ios7 xCode

Can you please help me with this error that I'am getting... Basically, I'm trying to import all my contact list from my address book. Also I'm checking the phone number label, but the error that I'm getting is "Use of undeclared identifier…
0
votes
1 answer

for var in key loop displaying the same property instead of 4 different ones

Im trying to make an addressbook in javascript and the issue I have is that the properties of my objects are not giving me the info I need. I want 4 different property and not 4 loops of same property. The for loop is makes a loop of 4 lis list…
0
votes
1 answer

ABNewPersonViewController to save contact locally

I have looked all over SO and elsewhere and I suppose what I am trying to do is not possible. I am wondering if its possible to use ABNewPersonViewController to create a person and save it locally (i.e. not in the address book but as a file). Or if…
JeffN
  • 1,575
  • 15
  • 26
0
votes
1 answer

How can I remove facebook contacts from array? Ios AddressBook

I'm using the address book, but do not want him to bring contacts from facebook. I made a if statement to filter, but I do not remove it from my array. ABMultiValueRef emails = ABRecordCopyValue(person, kABPersonEmailProperty); CFIndex…
Claudia Mardegan
  • 567
  • 4
  • 14
0
votes
1 answer

potential leak of an object stored into ABMutableMultiValueRef in iOS

I am facing this type of warning when i analyze my code. I share my screenshot please anybody can suggest me? This is my warning. What i have to do?
Soumya Ranjan
  • 4,817
  • 2
  • 26
  • 51
0
votes
1 answer

Accessing native iPhone addressbook database and performing add and delete contacts?

In my application I need to implement the address book which should contains the native addressbook details, and the user should be able to add and delete from the address book and it should be updated in the native iphone addressbook. I read…
CKT
  • 1,223
  • 4
  • 21
  • 39
0
votes
1 answer

Finding Microsoft document about 'globe' contact in Outlook Address Book

Sorry first because this problem does not relate to programing language. But I think developers is used to working with it. In my Outlook Address Book, I see some contacts that have a globe icon next to it, but I dont know exactly what they mean. I…
NoName
  • 877
  • 12
  • 28
0
votes
0 answers

How to identify which contact is being imported from Facebook in iOS

I am accessing a contact from the address book. I don't want to import a Facebook contact while copying the rest of the contacts. So how can I identify if the contact was imported from Facebook? For copying the array of people, I'm using this…
Anoop
  • 409
  • 3
  • 13
0
votes
0 answers

Accessing kABAnniversaryLabel and applying it to date Format

I am attempting to access the anniversary date property from the contacts in address book. I have already accessed other properties such as the name and company. myPerson was created from a custom class, and it has an NSDate property called…
0
votes
1 answer

Return Selected Phone Address from iPhone Address Book

I found a tutorial online that extends that Apple QuickStart Application which is the basic Address Book Application and another that returns the first phone number regardless of what phone number was clicked. I want to display only the selected…
Ali
  • 4,311
  • 11
  • 44
  • 49
0
votes
1 answer

Export a contact to the iphone address book?

I want to export a contact with info from my app to the address book of the user, how can I do this? I`ve seen answers of the opposite, getting address book into the app but nothing about what I need. thanks
Karlo A. López
  • 2,548
  • 3
  • 29
  • 56
0
votes
0 answers

Getting just the phone number digits from kABPersonPhoneProperty in iOS

I am unable to get the phone number string without UTF encoding it.. All the solutions in on this site assumes that there is no utf chars.. but I see utf chars : NSLog(@"String = %@ %s",phoneNumber, [phoneNumber…
user3570727
  • 10,163
  • 5
  • 18
  • 24
0
votes
1 answer

UIAlertView and Requesting Access to Addressbook

if (ABAddressBookGetAuthorizationStatus() == kABAuthorizationStatusNotDetermined) { ABAddressBookRequestAccessWithCompletion(addressBookRef, ^(bool granted, CFErrorRef error) { if (granted) { // First time access has been…
Moody
  • 352
  • 3
  • 15
0
votes
1 answer

Syncing Core Data With AddressBook

Whats the best way to purge all data i have in my core data file, and rewrite my updated addressbook to my core data? Is there a way to overwrite data in core data? how can i do this in a good practice? I want to be able to sync my addressbook and…
Moody
  • 352
  • 3
  • 15
0
votes
1 answer

AddressBook and Core Data

I am trying to make an app that will store addressbook contacts' IDs into a SQLite file using core data. My problem is i will want to request some of those IDs at random, and contact IDs is not reliable because there might be gaps in contacts ID, so…
Moody
  • 352
  • 3
  • 15