UIActivityViewController
to share content is not working as expected in case of saving notes in ios9
. Here is my piece of code :
title,description,url are contains different contents to share.//
NSArray *dataToShare= @[title,description,url];
UIActivityViewController* activityViewController =
[[UIActivityViewController alloc] initWithActivityItems:dataToShare
applicationActivities:nil];
[self presentViewController:activityViewController animated:YES completion:^{}];
Thanks for any input very much in advance.