You can use the UIActivityViewController .
First you need to create a list of things you want to split: URL, string, etc., For example,
NSArray *activityItems = @[[NSURL URLWithString:@"www.link-to-share.com], @"What you want written above"];
After that, you just need to create a UIActivityViewController with the things you want to share and present them modally:
UIActivityViewController *activityController = [[UIActivityViewController alloc] initWithActivityItems:activityItems applicationActivities:nil]; [self presentViewController:activityController animated:YES completion:nil];
You can also add a completion block so that you are notified when the user has shared:
[activityController setCompletionHandler:^(NSString *activityType, BOOL completed){
source share