iOS
UIActivityViewController
Zoeken…
parameters
Parameternaam | Beschrijving |
---|---|
activityItems | Bevat een reeks objecten om de activiteit uit te voeren. Deze array mag niet nul zijn en moet ten minste één object bevatten. |
applicationActivities | Een reeks UIActivity-objecten die de aangepaste services vertegenwoordigen die door uw toepassing worden ondersteund. Deze parameter kan nul zijn. |
De activiteitweergavecontroller initialiseren
Doelstelling C
NSString *textToShare = @"StackOverflow Documentation!! Together, we can do for Documentation what we did for Q&A.";
NSURL *documentationURL = [NSURL URLWithString:@"http://stackoverflow.com/tour/documentation"];
NSArray *objectsToShare = @[textToShare, documentationURL];
UIActivityViewController *activityVC = [[UIActivityViewController alloc] initWithActivityItems:objectsToShare applicationActivities:nil];
[self presentViewController:activityVC animated:YES completion:nil];
Snel
let textToShare = "StackOverflow Documentation!! Together, we can do for Documentation what we did for Q&A."
let documentationURL = NSURL(string:"http://stackoverflow.com/tour/documentation")
let objToShare : [AnyObject] = [textToShare, documentationURL!]
let activityVC = UIActivityViewController(activityItems: objToShare, applicationActivities: nil)
self.presentViewController(activityVC, animated: true, completion: nil)
Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow