iOS
UIActivityViewController
Suche…
Parameter
Parametername | Beschreibung |
---|---|
ActivityItems | Enthält ein Array von Objekten, um die Aktivität auszuführen. Dieses Array darf nicht null sein und muss mindestens ein Objekt enthalten. |
applicationActivities | Ein Array von UIActivity-Objekten, das die benutzerdefinierten Dienste darstellt, die Ihre Anwendung unterstützt. Dieser Parameter kann Null sein. |
Activity View Controller initialisieren
Ziel 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];
Schnell
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
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow