0
我想分享一個像Safari一樣在我自己的iOS應用程序中執行的網址,我該怎麼做? 使用socail框架可以共享某些指定的社交平臺,但在我的情況下,我只想分享像Safari一樣的網址。我如何在Safari瀏覽器中分享像我自己的應用程序中的網址
我想分享一個像Safari一樣在我自己的iOS應用程序中執行的網址,我該怎麼做? 使用socail框架可以共享某些指定的社交平臺,但在我的情況下,我只想分享像Safari一樣的網址。我如何在Safari瀏覽器中分享像我自己的應用程序中的網址
你覺得UIActivityViewController?
@IBAction func shareTextButton(_ sender: UIButton) {
// image to share
let link = "https://www.google.rs/"
// set up activity view controller
let activityViewController = UIActivityViewController(activityItems: [link], applicationActivities: nil)
activityViewController.popoverPresentationController?.sourceView = self.view // so that iPads won't crash
// exclude some activity types from the list (optional)
activityViewController.excludedActivityTypes = [ UIActivityType.airDrop, UIActivityType.postToFacebook ]
// present the view controller
self.present(activityViewController, animated: true, completion: nil)
}
共享網址如Safari?這是什麼意思?你是否在談論從Safari瀏覽器打開應用程序的深層鏈接。 – Ellen