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

Pushing a ABUnknownPersonViewController onto a navigation controller results in having no Navigation Bar - Any ideas?

I'm working with the Address Book UI API on iPhone SDK 3.0. I want to present to the user the ability to create a new user, or add to an existing one, so I am using the ABUnknownPersonViewController. I have an existing navigation stack (with only 2…
dermdaly
  • 529
  • 4
  • 14
0
votes
1 answer

Show Addressbook with UISegmentController in Nevigationbar

TASK : I want to show my all contact in one UItable and Which parts all contacts with UISegmentcontroller which is in Nevigationbar. My Application is Tabbar Application so When I show my UISegmentController I have to add it in my Mainwindow xib…
Vivek2012
  • 772
  • 1
  • 13
  • 25
0
votes
1 answer

Get phonenumber from addressbook for two textfield

I followed Apple Address Book Programming Guide for iOS to get phonenumber from addressbook to my UITextField. But I have two UITextField and doesn't know how to implement same function to second textfield. Presenting the people picker -…
Pavel Kaljunen
  • 1,291
  • 2
  • 26
  • 53
0
votes
2 answers

ios dev ABMultiValueRemoveValueAndLabelAtIndex returns true but doesn't work

I want to delete a specific phone number from an address book contact. It "seems" to work, because it is returning true, but it doesn't. Please, could anyone help me out here? This would be awesome! ABAddressBookRef ab = ABAddressBookCreate(); …
code-K
  • 35
  • 5
0
votes
1 answer

Using the Addressbook in Outlook VBA

Someone at work asked me if I could implement an easy system for him to send out Outlook template-mails based on a few parameters he could enter. An example would be a message like this: "Hello, Please be informed that system **Parameter1** is…
RobinM
  • 33
  • 1
  • 7
0
votes
2 answers

ARC and ABAddressBook API for iOS

I have an app that uses the ABAddressBook API and I am trying to convert my app to use ARC. I know the AddressBook API is written in native C and its giving me a lot of errors when ARC is enabled. Anybody knows how to do it or is it even worth to do…
bartender
  • 31
  • 1
  • 6
0
votes
2 answers

Fix Potential leak of an object

When i used build and analyse, i got leaks( it showed as potential leak of an object). to fix that i included as below if ( aContactfirstName){ CFRelease(aContactfirstName); } if (aContactLastName){ CFRelease(aContactLastName); } But my…
user198725878
  • 6,266
  • 18
  • 77
  • 135
0
votes
3 answers

How to get all the address book contacts from iphone

I am new to iphone. I am stuck in my project in the step of getting all the address book contacts mainly(name and email) which are placed in iphone device into my table view which is created in my project. How can I do it?
user1268135
  • 57
  • 1
  • 7
0
votes
2 answers

Putting contact info into Phone Book from Blackberry

In my application I need to add contact info from my app into phonebook of BlackBerry. How can I achieve it? I have referred to the Java development guide "Create a contact and assign it to a contact list"
Yatin
  • 2,969
  • 9
  • 34
  • 68
0
votes
3 answers

Can not Edit Address Book Record from iphone app

I want to edit record from address book in my iphone app. But I can not edit any record. Here is my code // In my First View Controller - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { …
iOSAppDev
  • 2,755
  • 4
  • 39
  • 77
0
votes
1 answer

Copy from Addressbook in to textfield without clicking on any value

I copy values like name, surname, email and telephone number from the addressbook into Textfields. This works perfectly. but if I click on the name it pushes to the contactdetails and I always have to click on a value. Is it possible that if I open…
Bashud
  • 266
  • 2
  • 8
  • 20
0
votes
1 answer

Predictive input/type-ahead for email address input, based on user's contacts?

In Android Google Mail app, when you start typing into the "To:" field in a new email, you will get a dropdown menu, auto-populated from your contacts. I want this behavior in my app. Currently, when my users enter an email address, they have to…
theartofrain
  • 1,710
  • 15
  • 14
0
votes
1 answer

How can I get the values I set for custom properties in AddressBook to persist?

I have created a custom property in AddressBook named "Qref". I can check it's there using [ABPerson properties], and it's always there for any test app I write. By the way, you can't remove custom properties, because [ABPerson removeProperties]…
AlexT
  • 596
  • 7
  • 15
0
votes
2 answers

App crashes when getting Notes from AddressBook iphone

Here is my code to get Notes from AddressBook. +(NSString*)getNote:(ABRecordRef)record { return ABRecordCopyValue(record, kABPersonNoteProperty); } But in above implementation I have memory leak. So to remove memory leak I wrote following…
iOSAppDev
  • 2,755
  • 4
  • 39
  • 77
-1
votes
1 answer

How to query AddressBook contacts according to the given number?

I use the method loop all the contacts in addressbook, but It's too hard when too many contacts in AddressBook. How to query AddressBook contacts according to the given number?
Sam Niu
  • 143
  • 1
  • 10