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.

I have simple sharing features in my app by using iOS 6 UIActivityView controller.

When sharing in Facebook or Twitter there is a "shared via iOS"

the code is:

NSString *textToShare = @"Test string to share";

UIActivityViewController *activityViewController = [[UIActivityViewController alloc] initWithActivityItems:[NSArray arrayWithObject:textToShare] applicationActivities:nil];

[self presentViewController:activityViewController animated:YES completion:nil];

is there any way to change "Shared via iOS" to my app name or anything else?

shareviaios

Thanks, Bill.

share|improve this question
2  
look at this issue , it's the same stackoverflow.com/questions/12547616/… – Mohammad Rabi Dec 18 '12 at 15:18
the last post says when released it will happen automatically... Thanks for pointing me in this... – BillKast Jan 8 at 9:18
1  
Anyone verified this? Also does this mean it would appear as expected when developing an app which already exists in the app store (working on an update) – Daniel Jan 10 at 21:46
Hi Daniel, The app is now released and I can confirm that still says shared via iOS. Nothing changed. – BillKast Apr 10 at 8:42
1  
@BillKast look at this answer on that same question stackoverflow.com/a/12605241/801913 – momo Apr 11 at 4:09
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.