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 can I Enhance my AddressBook addEntry() method?

I have an Address Book Program that [1] adds Entry [2] delete entry [3] update/edit entry [4] view all entry and [5] view specific entry.. Entries were stored in an Array entry[] like: entry[counter] = new AddressBookEntry(); It all runs properly…
0
votes
1 answer

Problem of Logic in Addressbook, should have no blank entries or same entry... Please Help

hope you can help me coding. What i need to do: 1.) I should not allow user to have a blank entry.. I should prompt them like "No name inputted!" 2.) I should not allow user to input same entry.. I have no Idea how to code i, please help. Here's my…
iamanapprentice
  • 411
  • 5
  • 19
  • 37
0
votes
1 answer

Subscription to an event of Address Book in iOS

When a new contact is added to the address book, I need to do something to it. At least I need to get some contact identifiers for later use. As you may guess, I would like to my app works in background or maybe starts in the background when a new…
Roman Reimche
  • 143
  • 1
  • 13
0
votes
1 answer

Not working add number to existing contacts in ios 11

I want to add a phone number into existing contact. This code working perfectly in iOS8 but not into iOS11. Not getting any errors but while ABNewPersonViewController opens I cannot see new Phone Number. -(void)addToExstingContact{ …
Pramod Tapaniya
  • 1,228
  • 11
  • 30
0
votes
0 answers

issue with UIImagePickerController - objective C

as the title i have problem with the picker controller. i'm using a virtual machine to program in objective c, xcode version 9.2, and iOS 11.2. My app is an Address Book, when the user create a new contact he is able to pick a photo from one camera…
0
votes
2 answers

ABAddressBook get birthday property

I'm trying to get the birthday property from ABAddressBook on my iphone. I've looked through some discussions over the web and mostly recommends the same answer, which I have tried myself as below. But this still doesn't work for me so I wonder if i…
Adi
  • 1
  • 1
0
votes
1 answer

address book data

To create my own address book i have copy all contacts from address book and stored them in an array but i need to bold the last name in the array, for eg if array have object "abc efg" then i need to bold only efg in the array how can i do it…
Manish Jain
  • 865
  • 3
  • 13
  • 28
0
votes
1 answer

Address Book propertyID - unknown type?

Working on an app that makes heavy use of the Address Book framework. There are a number of View Controllers that interact with Address Book data, and they all work just fine. Except for one, and it's killing me. I have a class that wraps address…
bpapa
  • 21,409
  • 25
  • 99
  • 147
0
votes
1 answer

how to display iphone addressbook in indexed table view

i am writing an iphone application where i am accessing contacts from AddressBook. I've successfully displayed the contacts using ABPeoplePickerNavigationController. Now now i want to do is to display contacts in alphabetically separate sections,…
aqavi_paracha
  • 1,131
  • 2
  • 17
  • 38
0
votes
1 answer

How to identify a local phone contact and an SYNC phone contact in iphone?

I need google id of the contacts, Is there any way to find the google contact id for my address book contact? I found this answer, which shows it is possible in Android. How can I achieve in iOS?? Please help me to find google id from address book.
Ilesh P
  • 3,940
  • 1
  • 24
  • 49
0
votes
1 answer

how can I access the label of phone number in AddressBook

I am using following code ABMultiValueRef multi = ABRecordCopyValue(i1, kABPersonPhoneProperty); if(ABMultiValueGetCount(multi)>0){ NSString *no= (NSString*)ABMultiValueCopyValueAtIndex(multi, 0); alarmData.no1=no; } This returns the phone…
Ali
  • 10,774
  • 10
  • 56
  • 83
0
votes
2 answers

Address book Phone number (+45) prefix causing crash!

I am having trouble getting phone numbers from the iPhone Addressbook. There is no problem when the number do not contain a country code prefix like +45, but if it does, my app crashes... Is this a known issue? I haven't been able to find anything…
CCDEV
  • 371
  • 1
  • 5
  • 16
0
votes
0 answers

I am unable to print anything in jtextarea in netbeans generated gui

First Class I just want to print in the text area. package newaddressbook; import com.sun.accessibility.internal.resources.accessibility; public class PersonInfo { String name, address, phone_Number; public PersonInfo() { } …
Faizan Sh
  • 96
  • 1
  • 13
0
votes
2 answers

Android: SeperatedList (How to get address book effect?)

Hallo All, I have a ListView, which kontains a RadioGroup and a Button in each row. The ListView works well. Now i want to add a header to the ListView, to get the effect like the address book. I fund a Java Class from the Internet, which looks like…
TianDong
  • 593
  • 2
  • 9
  • 19
0
votes
1 answer

UIAddressBook code puts error on device

I testing following code on simulator ,it works fine but when I select the device and run then it gives exception . ABAddressBookRef addressBook = ABAddressBookCreate(); CFArrayRef allPeople = ABAddressBookCopyArrayOfAllPeople(addressBook); …
Ali
  • 10,774
  • 10
  • 56
  • 83