iOS
UIActivityViewController
サーチ…
パラメーター
パラメータ名 | 説明 |
---|---|
activityItems | アクティビティを実行するオブジェクトの配列を含みます。この配列はnilであってはならず、少なくとも1つのオブジェクトを含んでいなければなりません。 |
applicationActivities | アプリケーションがサポートするカスタムサービスを表すUIActivityオブジェクトの配列。このパラメータにはnilを指定できます。 |
アクティビティビューコントローラの初期化
目標-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];
迅速
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
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow