Я хочу создать гиперссылку в IBM watson Chatbot, но не могу найти решение. Пожалуйста, помогите мне, так как я получаю текст плана.Мой код, как показано ниже,
let text:String = "<a href=" + "https:IBMWatson.com" + ">" + IBMWATSON + "</a>"
let data = text.data(using: String.Encoding.unicode)! // mind "!"
let attrStr = try? NSAttributedString( // do catch
data: data,
options: [NSAttributedString.DocumentReadingOptionKey.documentType: NSAttributedString.DocumentType.html],
documentAttributes: nil)
let message = JSQMessage(
senderId: ChatBotUser.Server.rawValue,
senderDisplayName: ChatBotUser.getName(ChatBotUser.Server),
date: date,
text : attrStr.String
)
if let message = message {
self.messages.append(message)
self.finishSendingMessage(animated: true)
}