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

Address Book name with é,è ... and multiple number

I would like to store contact from Address Book in NSDictionary. I succeed to Log First name + Last name of contact and store in NSDictionary "name". But when smiley or some accent like "é" or "è" is in the first or last name, that gives me error…
Vjardel
  • 1,065
  • 1
  • 13
  • 28
0
votes
2 answers

Contacts from address book is not coming

I have written the below code for fetching contacts from address book. ABAddressBookRef addressBook = ABAddressBookCreateWithOptions(NULL, NULL); NSArray *people = (__bridge NSArray*)ABAddressBookCopyArrayOfAllPeople(addressBook); for(id person in…
iPeter
  • 1,330
  • 10
  • 26
0
votes
1 answer

"Binary operator '<' cannot be applied to two CFIndex operands" - choosing a phone number from ABMultiValue (Address Book)

I'm trying to use AddressBook and AddressBookUI to show a view of the address book, where a user can then tap on a contact and then the phone number, and the app receives the phone number. I'm having an issue when I iterate through the ABMultiValue…
Sam Heather
  • 1,493
  • 3
  • 19
  • 42
0
votes
2 answers

accessing phone number and display country name or the country code

I accessing contacts and sending it to server, my question is do I have any possibility of detecting which country contact belongs to? Thank you.
krishna
  • 114
  • 2
  • 8
0
votes
2 answers

Android - Get all sms in phone sent to a peson

I'm new to android programming. just to improve my skills, i started with some project in my mind. when app starts, it will show a button. on click of it, it will allow me to select a contact from the address book. then i want to retrieve all the…
Satyam
  • 15,493
  • 31
  • 131
  • 244
0
votes
1 answer

How to override contact data?

Writing my own kind of contact manager (with some extras) I want to override or integrate the android contacts. For example: If an incoming call comes, there should be the possibility to show my own contact data for the incoming phone number. (I do…
Christian
  • 576
  • 1
  • 4
  • 16
0
votes
4 answers

How to retrieve all phone numbers saved against one contact from address book in IOS?

I am building an iOS application where I am trying to get all the phone contacts and display them. Now the problem is that if there is a case where are two phone numbers are saved with one name then in my list only the first number is displayed. I…
sof question
  • 93
  • 2
  • 13
0
votes
1 answer

Android contact list picker

I have 2 activities: the first - is just an opening page and it has a button that goes to the second activity the second activity - will open up the contact list and will allow the user to pick contacts and retrieve their numbers - they will be…
isabella
  • 151
  • 4
  • 15
0
votes
2 answers

Fetching all images from ABAddressBook crashes due to memory pressure

I'm querying all persons from the IOS address book and store their image in a local cache. Everything works fine for small address books - however a lot of entries (>1000) crash the app due to memory pressure. After investigating the issue it seems…
Simon Heinzle
  • 1,095
  • 1
  • 9
  • 17
0
votes
2 answers

Arrays? or not?

i am not an expert in java, but i need to solve this problem/activity for my course subject, that's why i really need your help guys. I have a programming problem. thing is i can't figure out what method or java codes should i use for this…
SOL
  • 3
  • 5
0
votes
1 answer

AddressBook - How do I compare two compound names

I have to make an address book for a school project. I got the basic functions working but then we are asked the following. "Using the get and set methods, create a comparison method compareNames(name1, name2) that compares the first, middle, and…
Pat
  • 1
  • 1
0
votes
1 answer

Swift TableView AddressBook Array Error

I have tableview and inside there i have address book items (firstName, lastName, phone) So i have cell which shows only the last property from my device multiplied on numberOfRowsInSection but after that i have println() and it gives me the whole…
C0mrade
  • 1,215
  • 1
  • 10
  • 23
0
votes
1 answer

question about navigationController and pvc

- (void)tableView:(UITableView *)aTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { /* When a row is selected, set the detail view controller's detail item to the item associated with the selected row. …
Cocoa Dev
  • 9,361
  • 31
  • 109
  • 177
0
votes
0 answers

Prompt permission miss Swift

I'm trying in the first screen load the contacts so i used this: if authStatus != ABAuthorizationStatus.Authorized { // Ask for permission var sema = dispatch_semaphore_create(0) …
Pedro Manfredi
  • 3,768
  • 5
  • 19
  • 24
0
votes
1 answer

Swift AddressBook - copy all people in source with sort ordering issue

here is the issue I'm getting. Any help is much appreciated. Here's the code: var addressBook: ABAddressBookRef = { var error: Unmanaged? return ABAddressBookCreateWithOptions(nil, &error).takeRetainedValue() as…
Jake M.
  • 105
  • 8