I'm quite new in iPhone development. I'm interested to configure email account on iPhone from code. Is it possible? Is there any API in SDK to implement this?
Thank in advance for your answers.
Regards,
M. Wolniewicz
Unfortunately, you cannot configure eMail accounts on an unjailbroken iPhone from code.
Related
I have 10 messages in my iPhone.I would ilke to get those messages into my iPhone app.So kindly tell me how to do this.
Thanks and Regards,
Srinu Ambati
It's not possible using the official SDK.
For reasons of security and privacy, I think it is not possible to read SMS from iPhone with a third party application. However if you want to save your SMS, it seems that a solution exists with this tutorial
Apple restricts this behavior because of privacy politics. All messages are stored in /private/var/mobile/Library/SMS/sms.db file and you can't get access to it without jailbreak.
Is there any way in IOS SDK that, i can access my mobile messages from my mobile inbox in my application.
If any one know please help.
Thanks in advance
Abhishek kumar srivastava
Other than being jailbroken or using Private APIs, no.
I want to read the Email by giving username and password via POP3 using iPhone SDK for iPhone 4.0. Whether its possible to do it. If not can any body give me any link or open source to do achieve this functionality.
Thanks in Advance.
No, this is not possible without using a complete POP3 library (and I'm not aware of any that exist for iPhone). There's nothing in the SDK that will give you this for free.
In my application i want to send a attachments, Test through MMS. How can we do it using iPhone SDK. Please help me out.
Thank you
Unfortunately you can't, at least not in a supported way that you would get away with on the App Store.
I'm building an app that will allow the user to send a status update to twitter about something they have done in the app.
What is the easiest way to authenticate the user in the settings and have the app update their status when they tap a button?
Any help/ sample code is greatly appreciated.
-GVG
PHP/ iPhone SDK Developer
http://gilesvangruisen.com/
I think a lot of people use the source code from Matt Gemmell:
http://mattgemmell.com/2008/02/22/mgtwitterengine-twitter-from-cocoa
That should be a good starting point.