6

MSConversation 为我们提供了本地参与者和远程参与者。但是,我无法检索 self 或 other 的显示名称。我如何获得这些名称? https://developer.apple.com/reference/messages/msconversation

let ids = activeConversation?.remoteParticipantIdentifiers
let otherId = ids?[0].uuidString
let ownId = activeConversation?.localParticipantIdentifier.uuidString
let predicate = CNContact.predicateForContacts(withIdentifiers: [otherId!]);

do { 
    let contacts = try CNContactStore().unifiedContacts(matching: predicate, keysToFetch: [CNContactFamilyNameKey, CNContactGivenNameKey, CNContactNicknameKey, CNContactIdentifierKey])

    for contact in contacts{
        print(contact.givenName)
        print(contact.familyName)
        print(contact.identifier)
    }

} catch let err{
    print(err)
}

如上所述,我尝试搜索 CNContactsStore,来自 MSConversation 的 UUID 与 CNContact 不同。

4

1 回答 1

9

不幸的是,这不可能检索任何名称。您唯一能做的就是检索本地和远程参与者的 UUID。然后,您可以仅在对话记录中显示名称。为此,当您设置新的 MSMessage 时,不要忘记字符串中的符号 $:

    let message = MSMessage(session: theCurrentSession)
    let layout = MSMessageTemplateLayout()
    layout.caption = "$\(uuidOfTheParticipant) said something"
    message.layout = layout

注意:在目标 C 中,您不需要在“$”之后放置“\()”,这仅在 swift 中使用;)

这将在 MSMessage 的底部自动显示相应 UUID 的名称。如果您想了解有关 MSMessage 布局的更多信息,请查看此处:https ://developer.apple.com/reference/messages/msmessagetemplatelayout

另外,请记住,参与者的 UUID 是相对于对话本身的,它将在一个对话中保持一致,但对于每个参与者来说都是不同的(在我的设备上识别我的 UUID 在其他设备上会有所不同)。此外,如果用户卸载您的应用程序并重新安装它,所有 UUID 都会不同。

因此,要回答您的问题,您不能依靠此 UUID 来识别具有 CNContact 的任何用户,它们是不同的;)

于 2016-08-10T09:57:49.043 回答