I'm trying to build an in-game Tell A Friend form like in AppStore. Does anybody know if it can be found anywhere in the SDK? I wouldn't like to reinvent the sliced bread.
Thanks!
|
I'm trying to build an in-game Tell A Friend form like in AppStore. Does anybody know if it can be found anywhere in the SDK? I wouldn't like to reinvent the sliced bread. Thanks!
| |||
feedback
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
|
Short of writing your own SMTP client, you can create a message then exit your app by sending a URL to the mail app with openURL.
The user then checks the content and sends the message. | |||||||
feedback
|
|
In meantime, there are some new API's in the iPhone SDK including the MessageKit.framework. That framework makes it possible to add a MFMailComposeViewController. Hope that works, Tim | |||
|
feedback
|
|
In your .h file import MessageUI and MFMailComposerViewController:
Then go into your .m and add the following code:
UPDATE You can also send SMS' using this code:
| ||||
|
feedback
|
|
As Ben says, no, there's nothing like that in the SDK. My guess is there never will. I imagine that this functionality is implemented on the server side, which is probably the best option anyway. | |||
|
feedback
|