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.
Related
I want to fetch the user's phone number from her iPhone settings. I have found so far that this is not supported with any Titanium API. Is there any module or a way to get the phone number that is entered in user's iPhone settings.
Thanks! :)
You can't access that information. Even when you are using Objective-C to create your app, Apple doesn't provide API for that. Take a look on this question.
If you want to collect users phone numbers, you have to ask them for it explaining why you need it.
can any one help me in integrating salesforce in my app.I have made account in sales force and also created the remote-acces key.Can anyone tell how to ad objects ,dashboards etc in the iPhone app.I also want to know how to access the data on salesforce .for e.g. i want to get all the custom objects in salesforce and also want to create custom objects from iPhone app.Can anyone guide me in this respect.Any help is appreciated.
There are many ways to do it. I advice you to read carefully and choose the best way to do it.
Here are some links to read about it:
Making Salesforce and PayPal Work Together
SDK Project
Good Documentation and code
Salesforce provides mobiles SDK for iPhone, Android & hybrid platforms.
This SDK has samples on how to start with. There are lot of documentations available.
Basically the SDK helps to authenticate with Salesforce using oAuth, communicating with the objects using RestKit.
Refer the following URLs to start with..
Download the mobile SDK from the following URL.
https://github.com/forcedotcom/SalesforceMobileSDK-iOS
There is a discussion forum
http://boards.developerforce.com/t5/Mobile/bd-p/mobile
API docs
http://forcedotcom.github.com/SalesforceMobileSDK-iOS/Documentation/SalesforceSDK/index.html
Ref:
http://wiki.developerforce.com/page/Mobile_SDK
I want to know, Is it possible to integrate Reddit, StumbleUpon, del.icio.us and Digg in iPhone app? I have to implement all this in my iPhone app. Please give me the some any example link about all these points.
For Delicious you can use sharKit
Digg has a REST API clearly documented here: http://developers.digg.com/documentation
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.
I am New phone Application Developer and i want to develop an Application which contains maps so will you please give me some information regarding how to load map in my application?
You want to use MapKit. The specifics of this API are too expansive to discuss in this answer (and you didn't provide us with a description of what exactly you want to achieve), but look at the documentation for the MKMapView class and its delegate.
Also, there are some 80 questions on Stack Overflow tagged "MapKit".
Here's a blog post about the iPhone Map Kit.
If you don't understand it you should first play around with the iPhone SDK / Objective-C and get more familiar with it.