up vote 1 down vote favorite
1
share [g+] share [fb]

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!

link|improve this question

27% accept rate
please consider accepting an answer to this question (if any were useful to you), or revising your question (if appropriate) to encourage new answers. – David Thomas Dec 21 '10 at 22:49
feedback

protected by Will Dec 21 '10 at 23:12

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.

5 Answers

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.

NSURL *url = [[NSURL alloc] initWithString: @"mailto:gilm@myopenid.com?subject=subject&body=body"];
[[UIApplication sharedApplication] openURL:url];

The user then checks the content and sends the message.

link|improve this answer
3  
My answer has now been superseded by changes to the iPhone SDK. Refer to the MFMailComposeViewController class. – Chris Samuels Mar 5 '10 at 12:56
+1 (to your answer and comment) for noting your original answer's deprecation. – David Thomas Dec 21 '10 at 22:44
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

link|improve this answer
feedback

There's nothing like this in the SDK, sorry.

link|improve this answer
feedback

In your .h file import MessageUI and MFMailComposerViewController:
#import <MessageUI/MessageUI.h>
#import <MessageUI/MFMailComposeViewController.h>
You need to make your viewController MFMailComposeViewControllerDelegate by adding: <MFMailComposeViewControllerDelegate> like the following:

@interface tellAFriend : UIViewController <MFMailComposeViewControllerDelegate> {


Also make a IBAction for telling a friend:
-(IBAction)tellAFriend;
UPDATE
For SMS, also add:
-(IBAction)tellAFriendViaSMS;


Then go into your .m and add the following code:

-(IBAction)tellAFriend {

if ([MFMailComposeViewController canSendMail]) {

MFMailComposeViewController *mailView = [[MFMailComposeViewController alloc] init];
mailView.mailComposeDelegate = self;
[mailView setSubject:@"Check Out your_app_name_here"];
[mailView setMessageBody:@"Check out your_app_name_here <br> It's really cool and I think you would like it." isHTML:YES];

[self presentModalViewController:mailView animated:YES];
[mailView release];

}

else {

NSLog(@”Mail Not Supported”);

}

}

-(void)mailComposeController:(MFMailComposeViewController*)controller didFinishWithResult MFMailComposeResult)result error  NSError*)error {

[self dismissModalViewControllerAnimated:YES];

}

UPDATE You can also send SMS' using this code:

-(IBAction)tellAFriendViaSMS {
MFMessageComposeViewController *controller = [[[MFMessageComposeViewController alloc] init] autorelease];
if([MFMessageComposeViewController canSendText])
{
    controller.body = @"Check Out your_app_name_here, itunes_link_here";
    controller.recipients = [NSArray arrayWithObjects:@"phoneNumbersHere", @"PhoneNumberTwo", nil]; // Optional
    controller.messageComposeDelegate = self;
    [self presentModalViewController:controller animated:YES];
}
}
link|improve this answer
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.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.