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

Keep reference of ABPerson in CoreData

I'm trying to keep the phone's contacts in my app up to date, in a persistent way. For that I'm thinking of using Core Data. My plan right now seems highly suboptimal : Browse the address book and every ABPerson in it Store every field in a…
Gil Sand
  • 5,802
  • 5
  • 36
  • 78
0
votes
4 answers

Cannot find protocol declaration for 'ABPeoplePickerNavigationControllerDelegate'

In a Project having already ObjC, I'm adding a Swift Class import AddressBookUI class MyVC : UITableViewController, ABPeoplePickerNavigationControllerDelegate { } MyApp-Swift.h:289:42: Cannot find protocol declaration for…
StuFF mc
  • 4,137
  • 2
  • 33
  • 32
0
votes
1 answer

Address Book check if Contact exist in addressbook Getting crashed with EXC_BAD_ACCESS

NSArray *allContacts = (__bridge NSArray *)ABAddressBookCopyArrayOfAllPeople(addressBookRef); BOOL isExisted=FALSE; for (id record in allContacts){ ABRecordRef thisContact = (__bridge ABRecordRef)record; …
BhavikKama
  • 8,566
  • 12
  • 94
  • 164
0
votes
1 answer

iOS App Crash Log AddressBook

I submitted my app to the AppStore and Apple said it is crashing on launch. I fully tested this in all the simulators and on a physical device and I was unable to replicate this, everything works. But whatever device/process Apple is using, they…
Lavvo
  • 1,024
  • 3
  • 16
  • 35
0
votes
1 answer

how to get localized label names on OS X Addressbook?

I'm working with the addressbook framework both in iOS and OS X, now on iOS I used something like this: CFStringRef phoneNumberLocalizedLabel = ABAddressBookCopyLocalizedLabel( phoneNumberLabel ); however on OS X i'm using this: NSString *emailType…
Oscar Franco
  • 5,691
  • 5
  • 34
  • 56
0
votes
1 answer

Strange Invisible Character in String causing NSURL to fail

I am having a String to Number problem that is taking me days to resolve. So it all started out in my app that involves taking a phone number from the addressbook and making a call. Everything was working fine until I noticed some phone numbers…
Lavvo
  • 1,024
  • 3
  • 16
  • 35
0
votes
0 answers

Delete record from Contact list get BAD_ACCESS error

I want to delete a contact from addressBook. I use this code to delete a contact from contact list of device. var recordId = ABRecordID(contact.contactId) var newContact: ABRecordRef! = ABAddressBookGetPersonWithRecordID(self.add?.adbk,…
user2056962
  • 85
  • 1
  • 1
  • 7
0
votes
1 answer

UML Address Book

I started learning UML lang around 10 days ago and getting lost a lot in all lessions, i try practice by myself more then reading "theory". I found suggestion to look into one old completed Address Book project who is missing 1 CRC…
johnny89
  • 11
  • 1
0
votes
1 answer

How to populate table with specific values instead of pseudo-random?

i'm trying to modify the vaadin addressbook app to a little different one with just the field names changed. but i do not know how to populate it with specific value instead of the pseudo-random as done in the vaadin tutorial example. here is my…
0
votes
1 answer

SQL Server "rare" error encountered; how do I look up a subset of records in a table, given certain paired identifiers such as first and last name?

This is the first time I've encountered an error message that made me feel like I deserved an award: Msg 8623, Level 16, State 1, Line 1 The query processor ran out of internal resources and could not produce a query plan. This is a rare event…
Triynko
  • 18,766
  • 21
  • 107
  • 173
0
votes
1 answer

Storing references to instantiated objects for an address book app

I'm trying to learn how to program and I'm stuck on something that Codecademy et. al. don't elucidate. They always teach you how to hardcode names to instantiated objects so that you can reference them later. I need to know what to do with a dynamic…
noob-in-need
  • 861
  • 1
  • 7
  • 13
0
votes
0 answers

How to get name and phonenumber peoplePicker

So i am trying to follow the guides and tutorials that apple gives about the ABPeoplePickerNavigationController. So far what i have been able to do is to get the picker to show and see all the avaliable contacts using this code: -…
Timo Cengiz
  • 3,367
  • 4
  • 23
  • 45
0
votes
1 answer

Connecting methods to buttons and initializing

I recently started learning Swift and for my first app (Master-Detail Template), I am trying to pull data (add contacts to a list) from my Address Book. I am trying to connect my showAddressBook method to the + button in the Master. The build fails…
0
votes
2 answers

Search element in array

I'm creating an Address Book program using array. I've done with the add and print data option. But now I'm stuck with the search/update option. This is my code in searching for the element if it exist in my array or not. public void…
Z'K
  • 29
  • 9
0
votes
2 answers

How to convert a column data to a row in php mysql

This is basically for testing an address book php application. Here is the output I got from the SQL query. I want to convert this results to a row. MySQL Query output Output looking for
Adrianna Mayo
  • 83
  • 2
  • 2
  • 9