iOS
UIActivityViewController
Recherche…
Paramètres
Le nom du paramètre | La description |
---|---|
activitéItems | Contient un tableau d'objet pour effectuer l'activité. Ce tableau ne doit pas être nul et doit contenir au moins un objet. |
applicationActivités | Tableau d'objets UIActivity représentant les services personnalisés pris en charge par votre application. Ce paramètre peut être nul. |
Initialisation du contrôleur de vue d'activité
Objectif 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];
Rapide
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
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow