0
發送消息時,它會用隨機碼引發錯誤。沒有描述或任何東西。這是我的代碼:Swift 4 iMessage發送消息:操作無法完成。 (com.apple.messages.messagesapp-錯誤錯誤9.)
if #available(iOSApplicationExtension 11.0, *) {
conversation?.send(message, completionHandler: { (error) in
if error != nil {
print(error?.localizedDescription)
}
})
} else {
conversation?.insert(message, completionHandler: { (error) in
if error != nil {
print(error?.localizedDescription)
}
})
}
錯誤:操作無法完成。 (com.apple.messages.messagesapp-error error 9.)
當我使用插入功能時,它工作正常。真的在煩我哈哈,明白嗎?臭蟲......不?好。
我也注意到了這一點。爲了以防萬一,我提交了一個雷達,但它應該很快就會被修復。 –