我使用Custom URL Scheme
創建了鏈接。我共享使用本機選擇這樣的鏈接:無法點擊自定義網址鏈接
func nativeSharing(sender: UIButton) {
if let link = NSURL(string: "myappurl://") {
let objectsToShare = ["", link] as [Any]
let activityVC = UIActivityViewController(activityItems: objectsToShare, applicationActivities: nil)
activityVC.excludedActivityTypes = [UIActivityType.airDrop, UIActivityType.addToReadingList]
activityVC.popoverPresentationController?.sourceView = sender
self.present(activityVC, animated: true, completion: nil)
}
}
它能正常工作,我得到電子郵件與鏈接
myappurl://
但它不是點擊。我在這裏做錯了什麼?
其字符串myappurl://不是鏈接,在這裏你需要添加originalURL –
我想分享鏈接。請你能告訴我如何分享嗎? – Rains
一旦用戶點擊鏈接,我想重定向到我的應用程序。什麼是可能的重定向方式。 – Rains