User Interface
Introduction
Open Conversations View
ChatUIManager.getInstance()?
.openConversationsView(
asModal: self,
withCompletionBlock: nil)Open a Messaging view with someone
ChatUIManager.getInstance()?.openSelectContactView(asModal: self, withCompletionBlock: { (contact, canceled) in
if (canceled) {
print("canceled")
}
else {
ChatUIManager.getInstance()?
.openConversationMessagesViewAsModal(
with: contact,
viewController: self,
withCompletionBlock: { () in
print("Messages view dismissed.");
});
}
})Messaging without Contact Selection view
Embed View components
Pluggable User Interface components
Plug User Profile View
Plug your own Select Contact View

Last updated