Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
UIActivityViewController - Email and Twitter sharing

I'm starting to get familiar with the new iOS 6 way to share: UIActivityViewController (the same as when you share a photo from the native iOS photo app), but I'm experiencing a few problems. First, when I choose to share via email, I can't find a way to set the subject of the email. Second, when I post on twitter, I can't find how to post a URL (except explicitly writing it in a NSString).

Before, on iOS 5, I was using MFMailComposeViewController for Mail and SLComposeViewController for Twitter. It worked well. If there's no way to choose the subject with UIActivityViewController, could there be a way that I put my own custom buttons on the ActivityViewController, buttons that will call MFMailComposeViewController and SLComposeViewController when touched? I'm just speculating here.

Thanks!

share|improve this question
For the URL just put NSURL object in activity items array. I don't know how to add the subject to the e-mail :) – Fahri Azimov Oct 19 '12 at 6:04
Then, do you know if it's possible to do a custom button with mail's icon that when pressed goes to my same IBAction as in iOS 5 when I used MFMailComposeViewController and set the subject? – Anthony Guay Oct 19 '12 at 13:10
I've [answered][1] this in another question you have posted. [1]: stackoverflow.com/questions/12984403/… – runmad Oct 20 '12 at 1:49

marked as duplicate by Robert Harvey Oct 30 '12 at 22:11

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

I've answered this in another question you have posted.

NSString *text = @"My mail text";

NSURL *recipients = [NSURL URLWithString:@"mailto:me@example.com?subject=Hi"];

NSArray *activityItems = @[text, recipients];

UIActivityViewController *activityController = [[UIActivityViewController alloc]
                                            initWithActivityItems:activityItems 
                                            applicationActivities:nil];

[self presentViewController:activityController animated:YES completion:nil];
share|improve this answer
@BryanH the code already had an array. It uses the new Container Literals for NSArrays, etc. @[]. You can read more here: clang.llvm.org/docs/ObjectiveCLiterals.html – runmad Oct 30 '12 at 12:50
Thanks! I initially pasted that line with the literals into a project and got an error, so I assumed it was incorrect. It turns out that project was using an older LLVM. Bumping up the version made the error go away. – BryanH Oct 30 '12 at 13:32

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