I need to change background color of cell in table view that shows, after user tapped more button in UIActivityViewController My code for calling it:
NSString* title = @"Test";
NSString *link = @"www.testLink.com";
NSArray* dataToShare = @[title, link];
UIActivityViewController* activityViewController =
[[UIActivityViewController alloc] initWithActivityItems:dataToShare
applicationActivities:nil];
[self presentViewController:activityViewController
animated:YES
completion:nil];