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 to add a string to address book in an iOS application?

I dont know anything about Objective-C and Xcode, almost nothing, I tried building only with very basic apps. Now I have here an app porject source, a friend of mine built partially, and I need to finish it. The only thing I need is to save the…
Francesco
  • 24,839
  • 29
  • 105
  • 152
0
votes
1 answer

Fetch list of iOS contacts based on the organization name or the jobtitle

Is it possible to fetch a particular contact information or the list of contact informations based on organization name or the job title using both AddressBook and contacts framework ??
Mohamed yaseen
  • 65
  • 1
  • 10
0
votes
0 answers

iOS: conflicting types for ABAddressBookCopyArrayOfAllPeople

I'm implementing a method to access the framework. but I'm getting this error: conflicting types for ABAddressBookCopyArrayOfAllPeople - (NSArray*) loadAddressBookContent:(ABAddressBookRef)addressBookRef { NSArray *something; CFArrayRef…
user2924482
  • 8,380
  • 23
  • 89
  • 173
0
votes
1 answer

Script access to custom address field through addressbook

I am having trouble setting a text value in a custom field I added to the address form. function fieldChanged_form(type, name) { if (name == 'custentity_bsi_agycampus') { var lnSeq = nlapiFindLineItemValue('addressbook',…
Gus
  • 33
  • 4
0
votes
1 answer

Using AddressBook to share information between iPhone apps

I've read that it's possible to share information between iPhone applications using the Addressbook. In fact, TextExpander Touch seems to be able to do just this by looking at their SDK…
hyuan
  • 774
  • 4
  • 12
0
votes
0 answers

AddressBook not loading

This is my source code it works fine, but it has one problem. It does not load the XML file that I followed at youtube because this is supposed to be a project. using System; using System.Collections.Generic; using System.ComponentModel; using…
Goven
  • 1
  • 1
0
votes
1 answer

can't get images for any contact from contact book

Below is my code but with this code i can't get image for any contact. Please help me for this. - (void)loadAddressBook { arrContacts = [[NSMutableArray alloc]init]; APAddressBook *addressBook = [[APAddressBook alloc] init]; [addressBook…
DJ1
  • 936
  • 15
  • 29
0
votes
1 answer

I want to fetch contact list from phone on tableview in ios?

I have written this code contactlistvc.h #import @interface ContactListVc : UIViewController { UITableView *contactTable; NSMutableArray *tableData; } @property (strong,…
user5917312
0
votes
2 answers

NSOperationQueue ....unrecognized selector sent

I am trying to implement a contact app. In the MyContactsViewController, I am trying to get access to Contacts and if the access is granted I will fetch the contacts from my address book. The ContactHandler is my model class(singleton) which has…
Natasha
  • 6,651
  • 3
  • 36
  • 58
0
votes
1 answer

How to fetch unified contacts from ABAddressBook iOS using AddressBook framework but by not using new Contacts Framework ? Is it even possible?

When fetching all the contacts from Addressbook in order to show a custom contacts picker, some contacts are partial. i.e. Same contact may have been synced from facebook or iCloud. So there may be two contacts , one will contain email address and…
Kalai_Human
  • 135
  • 7
0
votes
1 answer

Add extra button to ABPersonViewController

Im working on a small app that displays contact and biography details. You can see two screenshot here: contactDetails, biogDetails. At the moment I have an Action button on the right hand side of the NavigationBar that displays an ActionSheet where…
0
votes
1 answer

Check if phone number of contacts is on my server

I want to check if the number registered on my App and stored on my server are on the device where the app is running. I tried but I really can't go forward from here: In my class I have declared: var chatMatesArray: NSMutableArray =…
Francesco
  • 169
  • 1
  • 1
  • 14
0
votes
2 answers

How to retrieve NSStrings stored in multiple NSArrays inside of an NSArray

I'm building an "invite friends" feature. It's already working I just have one issue I'm wrestling with. I'm retrieving my contact list, and every time I select a contact I'm adding them to a NSMutableArray which I'm calling "selectedUser". So each…
Alex Knows
  • 11
  • 2
  • 8
0
votes
1 answer

While adding let addressBookRef: ABAddressBook i get a crash error?

I am trying to add a simple add to contacts feature. Just adding the variable let addressBookRef: ABAddressBook = ABAddressBookCreateWithOptions(nil, nil).takeRetainedValue() in an existing DetailViewController class and my project…
alex
  • 4,804
  • 14
  • 51
  • 86
0
votes
1 answer

Does the iPhone use the .vcf to store the address book data?

I want to ask a question about the iPhone address book. I am writing a program, it relates to the CardDav server and the .vcf file. I want to use the NSURLConnection to connect the server and download the .vcf. However, I am not sure that the iPhone…
Questions
  • 20,055
  • 29
  • 72
  • 101