3

iOS 13 では、さまざまなシステム アプリ (写真や Safari など) の共有シートに「オプション」が追加されました。ユーザーはエクスポートするもの (URL / Web アーカイブ) を選択でき、場合によってはオプション (すべての写真データを含む) を選択することもできます。

これはどのように実装できますか?これに関するドキュメントが見つかりません。

現在、私の実装は

let activityViewController = UIActivityViewController(activityItems: [myText], applicationActivities: nil)
activityViewController.popoverPresentationController?.sourceView = self
activityViewController.popoverPresentationController?.sourceRect = ...
MyViewController.shared?.present(activityViewController, animated: true, completion: {})

ここに画像の説明を入力 ここに画像の説明を入力

4

1 に答える 1