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

what is the package for addressbook_pb2

while going through the python tutorial for google protocol buffers I saw the examples call a library addressbook_pb2. I tried to do pip install addressbook_pb2 with no results. What is the package or steps needed to install the library
joydeep bhattacharjee
  • 1,249
  • 4
  • 16
  • 42
0
votes
1 answer

get kABAddressCountryCodeKey from address book

I have this code to get the country of a specific person from my osx address book. let address = person.value(forProperty: kABAddressProperty) as? ABMultiValue print(((adresse?.value(at: 0) as? NSMutableDictionary)?.value(forKey:…
Trombone0904
  • 4,132
  • 8
  • 51
  • 104
0
votes
1 answer

ABRecordCopyCompositeName and CFBridgingRelease crash issue

I am developing IOS application using AddressBook. Here is my code what I used. I am getting crash issue on substringWithRange function. What is the crash reason? Thank you. NSString * sort_name =…
James Chan
  • 97
  • 2
  • 12
0
votes
1 answer

Setting street address as the subtitle in an annotation

Hey! Basically I wanna reverse geocode my coordinates for my annotation and show the address as the subtitle for my stored annotation (StorePosition). I just cant figure out how to do it...what am I doing wrong? EDIT; .m -(NSString *)subtitle{…
0
votes
1 answer

Retrieve contacts of facebook into my application and show it in table view?

I have to show the contacts from facebook into my application.I am not getting how to do this. I am using this code but not getting any contact list. I am getting this type in the array but not getting any facebook list of contacts. <__NSArrayM…
user7356913
  • 15
  • 3
  • 6
0
votes
2 answers

Importing my class and using it gives me an error

i am learning python by myself. Right now i try to code a address book. I read that you should use a class for it and i don't get why because you could define every function you have in this class (like insertaddress, deletaddres,... ) without one…
Omikron
  • 3
  • 4
0
votes
2 answers

Does AddressBook.sqlitedb on iphone maintain a timestap column to determine which contact records have been added or modified at what time?

Is there a way to determine which contact records has been modified or added to AddressBook.sqlitedb on IPhone. I mean I want my application to read the AddressBook.sqlitedb and determine which contact records has been added or modified to the…
khalid
  • 1
  • 1
0
votes
1 answer

How can I made an AddressBook synchronized with my Iphone addressbook?

I have to made an app with an AddressBook, different by the internal iphone AddressBook, but I need to take informations from it (and I can do that), and I need to know (if exists) the internal AdressBook last modify date, so i could sync my app's…
dnlcrl
  • 5,022
  • 3
  • 32
  • 40
0
votes
1 answer

get details of person from address book swift macOS

good evening, today i start programming of my first macOS program in swift. unfortunately i find no tutorial which can solve my issue. i have a view controller with an "abpeoplepickerview". this shows me successfully my mac address book…
Stack108
  • 915
  • 2
  • 14
  • 35
0
votes
0 answers

Android Address Book - Only show contacts white-listed by my app

My app allows the user to white-list contacts. The user is allowed to make calls only to the white-listed contacts. I have achieved this functionality by saving the white-listed contact information in a SQLite table and displaying them in an…
bdroid
  • 1
  • 1
0
votes
1 answer

Swift: How to redirect user to Add Contact screen with contact number

I have a mobile number on my view controller and using that mobile number I want to redirect the user to the Add Contact screen (Address Book). Please note that I don't want to fill other fields (name, image and all) in background, just redirect…
Ravindra Shekhawat
  • 4,275
  • 1
  • 19
  • 26
0
votes
1 answer

How to implement searching in Haskell

I've been following a sample addressbook program in Haskell: menu = "1.Add address\n2.List addresses\n3.Exit" main = do prompt [] data Address=Address String String String deriving Show prompt :: [Address] -> IO() prompt addrs= do …
pgtr3s
  • 19
  • 3
0
votes
1 answer

Address Book Program

I'm doing an address book as part of a school assignment and I have it mostly figured out, but I'm stuck on one part. Here's my code first. I have an AddressBook class that contains variables and appropriate getter and setter methods to…
ripp2k
  • 1
  • 4
0
votes
1 answer

Low memory warning with API: ABPersonSetImageData

I am getting low memory warning after updating some 20 contacts with images. I have placed the code. Can anyone tell what might be the reason? NSString *imagepath = [[IDLFactory documentsDirectoryPath] stringByAppendingFormat:@"/%@",value]; …
Manjunath
  • 4,545
  • 2
  • 26
  • 31
0
votes
0 answers

Error when entering name on line 3

def newname(): info= {} info["fname"] = input("What is this contacts first name: ") info["lname"] = input("What is this contacts last name: ") info["address"] = input("What is this contacts address: ") info["city"] = input("What…