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?

Thanks, Bill.