我想用我的信息發送一個鏈接,允許用戶打開應用商店安裝應用或使用深層鏈接鏈接到我的應用中的某個內容,類似於Apple Music iMessage App。我目前正在使用:用iMessage發送URL
var messagee:MSMessage = message.url = URL(string: "https://itunes.apple.com/us/app/reaction-timer-game/id572319874?ls=1&mt=8")
template.image = game1Image.image!
template.imageTitle = "Game 1"
template.imageSubtitle = "\(bestScore1[0])"
但是,當我在圖像上挖掘的iMessage應用程序打開,而不是URL。這是可能的,如果是這樣,我該怎麼做?
我應該用這個發送的網址:
let url = URL(string: "urlData")
self.activeConversation?.insertAttachment(url!, withAlternateFilename: "URL", completionHandler: { (error) in
if error != nil {
print("Error")
} else {
print("Sent")
}
})
謝謝
我覺得這篇文章有用:https://www.hackingwithswift.com/ios10 –
你將使用iMessage來增加應用下載(y):)。 – Shrawan