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

How to access contacts only with email address in address book?

I am accessing all of the users contacts and emailing them through the app. I can access all of the contacts fine, if they have an email address. If they don't have an email address, then it gives me an error, I am trying to check if they have an…
SirRupertIII
  • 12,324
  • 20
  • 72
  • 121
0
votes
1 answer

Exporting iOS vCards without resizing images

My iPhone app is currently backing up users' contacts to .vcf files using the method ABPersonCreateVCardRepresentationWithPeople of AddressBook framework. But this method shrinks the images of the contacts, and I would like to have the option to…
Tanabe
  • 1
  • 1
0
votes
0 answers

Howto ABRecordRef + image larger than 320x320 px?

I'm working with Address Book Framework internally and I'd like to know if it's possible to use an image bigger than 320x320 px in the ABRecordRef opaque type. I tried to set an image from mainBundle but I was not lucky because when reading the…
specktro
  • 295
  • 1
  • 5
  • 12
0
votes
1 answer

Any OBJC API to get access to the Exchange Source of the AddressBook on Mac

The language I am using is Objective-C, and I'd like to get the exchange source list from the address book on Mac. When using addressBook.framework for the iOS platform, I can found some API like: CFArrayRef allSources =…
LYTTE_LJ
  • 79
  • 8
0
votes
1 answer

cocoa - get iphone address group

Is there any way to get the group of a contact in the address book? I can get all the info about a contact, but I can't find out how to get the group.
88fsantos
  • 393
  • 1
  • 7
  • 22
0
votes
1 answer

Error On Saving to Contacts From App

I have an error when using the following to save name address etc to contacts IBAction: ABUnknownPersonViewController *unknownPersonViewController = [[ABUnknownPersonViewController alloc] init]; unknownPersonViewController.displayedPerson =…
JSA986
  • 5,870
  • 9
  • 45
  • 91
0
votes
2 answers

Save To Contacts From App: Nothing Happening/Error

Trying to allow user to save contact details from my app to their address book/contacts. under IBAction: ABAddressBookRef addressBook = ABAddressBookCreate(); ABRecordRef person = ABPersonCreate(); CFErrorRef anError =…
JSA986
  • 5,870
  • 9
  • 45
  • 91
0
votes
1 answer

how to show particular selected person contact form Address Book Ui Iphone?

I am implementing address book Ui in my application. And I am getting some problem. I have a record id and i want to show details of that contact form address book UI frame work. For that I have used this code:- …
ios
  • 552
  • 5
  • 22
0
votes
2 answers

multiple connections without multithreading socket

i've got a problem with client/server address book. When i connect the first client all is okay. After, the server accept other connections from other clients but it doesn't respond to any request (adding numbers etc...) what can i do? thank…
myself
  • 89
  • 1
  • 8
0
votes
3 answers

I want to add a button, which ,when tapped, will show the user the list of contacts in his/her iPhone. Please help me find some working API

i have already searched many places many people have used ABAddressBookRef class but my xcode 4 does not recognize this i have imported and i have added the library/framework too but still the code was not recognized please help me in finding some…
Asad Ullah
  • 117
  • 1
  • 3
  • 11
0
votes
1 answer

Adding a button to a contact in iOS

I have an app that registers a new URL scheme ('myapp://'). I want to have the address book keep track of addresses for contacts with the URL scheme like it does to e-mail, SMS, Facetime, phone, etc. I want to have the contact info page have a…
0
votes
1 answer

iPhone Address Book ModalView Customization

I have a quick question I was hoping someone here with more experience could shed some light on. I am currently using the AddressBookUI framework (basically ABPeoplePickerNavigationController) to display a list of contacts from which a user may…
None
0
votes
2 answers

How can I categorize contacts in iPhone into multiple categories?

I am currently implementing address book in my application. But I am getting one issue with address book that is I want to pass contacts from address book according to their contact type. I mean to say that is if contact type is personal then save…
ios
  • 552
  • 5
  • 22
0
votes
1 answer

setting Address Book image with MacRuby

I am trying to set my user's Address Book Image with MacRuby. Here is what I have so far: framework 'ScriptingBridge' framework 'AppKit' download = "/path.png" data = NSData.dataWithContentsOfFile(download) bitmap =…
dejay
  • 758
  • 2
  • 6
  • 18
0
votes
2 answers

List of kAB*** properties?

The AddressBook framework has a list of constants, like kABFirstNameProperty. I'm wondering if there's a list of those that I could display in a user interface, other than having to "replicate" this myself?
StuFF mc
  • 4,137
  • 2
  • 33
  • 32