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

App is crashing with error [Swift._NSContiguousString count]: unrecognized selector sent to instance

App is crashing when i am trying to save contact. private let SharedInsance = AddressBook() class AddressBook: NSObject { private let authorizationStatus = ABAddressBookGetAuthorizationStatus() private let addressBookRef: ABAddressBook? class…
Dattatray Deokar
  • 1,923
  • 2
  • 21
  • 31
0
votes
1 answer

Parsing addresses with ambiguous data

I have data of phone numbers and village names collected from the villagers via forms. Because of various reasons the data is inaccurate or incomplete. The idea is to validate these two data points before adding them to the data base/store. The…
bittterbotter
  • 445
  • 6
  • 18
0
votes
1 answer

AddressBook API woes - NSInternalInconsistencyException

My situation is the following: We're creating an application that (among other things) shows data from the Public Folders in Exchange. We'd like our iPhone App to display contacts like the iPhone does it by default (like Apple's AddressBook app),…
Wolfgang Schreurs
  • 11,779
  • 7
  • 51
  • 92
0
votes
1 answer

CFStringRef release gives bad access when it is nil

ABMultiValueRef phonesRef = ABRecordCopyValue(person, kABPersonPhoneProperty); for (int i=0; i < ABMultiValueGetCount(phonesRef); i++) { CFStringRef currentPhoneLabel = ABMultiValueCopyLabelAtIndex(phonesRef, i); CFStringRef…
Paras Gorasiya
  • 1,295
  • 2
  • 13
  • 33
0
votes
2 answers

iPhone AddressBook Search Using number

i am able to search a contact name using phone number.But there is some issues.Like if the number in the addressbook have countrycode with the number and if i search with only the number it returns emty value.So it can not search the proper way.Here…
riaz hasan
  • 1,155
  • 2
  • 8
  • 20
0
votes
2 answers

kABPersonAddressProperty causes crashes under ABAddressBookGetPersonWithRecordID

I am trying to be an ABRecordRef that represents the contact info of a person from addressbook. I built two functions that calls a function to fill in a personal data structure with the info in ABRecordRef. Here comes the function declarations for…
Winston Chen
  • 6,799
  • 12
  • 52
  • 81
0
votes
1 answer

Regex to separate addresses information

I'd like to separate the data input by my user on their shipping information into the respective field. The data input will be in this format: Name - Phone Number - Address For Example: Andy Leblanc (0123-123-12312) Seaview Av. Street no 21,…
DiMa
  • 35
  • 1
  • 6
0
votes
2 answers

Issue regarding retrieving all email id's from address book in iphone

I am newbie to Address book programming. I want to retrieve all email id's from address book.The issue is below code gets the all data for one record(one person). but When i add more than one contact in address book. it crushes without showing any…
sathish kumar
  • 1,061
  • 6
  • 16
  • 31
0
votes
1 answer

ABContact setImage, thumbnail bug?

I have setup addressbook contact's images using a code, it works well and the image is there when I browse the Addressbook, But when a call comes, it only shows a thumbnail? I want to show the full image instead the thumbnail? Is it a bug? …
Sukitha Udugamasooriya
  • 2,268
  • 1
  • 35
  • 56
0
votes
1 answer

How to retrieve the First Name and Last Name from the AddressBook?

I want to ask about the address book framework on iPhone application. I have import the framework and .h in my class. However, I don't know how to retrieve all of the First name and last name in the address book and store it in the NSMutableArray.…
Questions
  • 20,055
  • 29
  • 72
  • 101
0
votes
1 answer

Where can I download and use the AddressBookUI.Framworks?

I want to write an application about the address book UI in iPhone. I found that there are a framework which is AddressBookUI. But where can I find this framework? Do I need to download or found form somewhere? Thank you.
Questions
  • 20,055
  • 29
  • 72
  • 101
0
votes
1 answer

ABPersonSetImageData works if no image, does nothing if image exists

I'm stuck and don't know what to do. The apple docs don't seem to cover this very well. My code: - (BOOL)peoplePickerNavigationController:(ABPeoplePickerNavigationController *)peoplePicker…
Marky
  • 1,294
  • 1
  • 18
  • 40
0
votes
1 answer

Python update alias and parent

I have to create a phonebook in Python that should have the following functions: add name number - adds the number and name to dictionary. Names must be unique and also for numbers. lookup name – print the number related to name alias name newname…
Hacjob
  • 1
  • 1
  • 4
0
votes
0 answers

Importing gmail, yahoo, hotmail address book using social auth

How can I import email providers address book using social auth? When I try to get the contact details, I get the email field as null. Can someone help me to resolve the issue.
0
votes
1 answer

Application crashes while adding photo adding new contact

I am using ABNewPersonViewController to add new contact to the address book. Every thing is fine if I do not add any photo from photo albums. It crashes if I add any photo and here is the log:- NSInvalidArgumentException', reason: '***…
vikas
  • 827
  • 1
  • 9
  • 19