Can anyone suggest me how to work with contact importing in iOS sdk?
I mean to import the address book into my iOS application.
Rather than try to import the contacts, why don't you use the address book.
Have a look at the AddressBook Framework.
Related
How do I access iPhone contact details in my application?
Use the ABAddressBook API. There's an introduction here.
You need to use the AddressBook APIs to get iPhone's contacts. It is easy to find code snippets.
I am developing a application in iphone which requires me to load my phone contacts.
how to load my contacts in the application?Is there any API or LIBRARY which allows me do the this.
Kindly suggest me with some solutions.
Regards,
Vijaya
Have a look at the Address Book Programming Guide for iPhone OS.
Does anyone know if iPhone (i.e. Cocoa Touch) lets you create custom properties?
I've used it with the mac before (where it works beautifully) and would like to use this technology for an iPhone app that syncs with an app on the mac through the Address Book (using MobileMe). If I can't use custom properties, however, I'll have to abandon this strategy.
For the mac, it's relatively easy: http://developer.apple.com/mac/library/documentation/UserExperience/
Conceptual/AddressBook/Tasks/AddingProperties.html#//apple_ref/doc/uid/20001026-BABHHIHC
Does anyone know if this is possible on the iPhone?
Cheers,
Gregor,
Sweden
nope, sorry, the AddressBook framework on the iPhone is woefully lacking in this regard. Also, no "me" card.
I have an iPhone application that adds new contacts via the Address Book Framework.
Is it possible to programmatically add a new or existing contact to the phone "Favorites" list?
If it is possible, pointer to doc, code or API please?
I don't believe it is possible using documented methods (so no App Store for you if you work it out). It is not a feature of the Address Book API but part of Apple's own Contacts application.
i want to import in my iphone application, but i know this framework is not available in iphone sdk,but i need to use NSfileWrapper class in this framework, is this class also available in UIKit or others framework available in iphone sdk, thanks
No, NSFileWrapper is not available on the iPhone. Simply adding a framework that doesn't exist on the iPhone also won't get you anything. Your application is very limited on the iPhone with regards to accessing files and you basically have to use the classes and methods provided by the Foundation framework for the iPhone.