Recent chat

This page shows a list of the most recent chats.

Features

Feature

Description

Recent chat list

User can see a list of the most recent chats

Navigation to Message list

When a user selects a chat, UIKit opens a chatroom page

Usage

import UIKit
import AmityUIKit

class ClientViewController: UIViewController {
    
    override func viewDidLoad() {
        super.viewDidLoad()
    }
    
    @IBAction func showChatListPage(_ sender: UIButton) {
        let recentChatVC = AmityRecentChatViewController.make()
        present(recentChatVC, animated: true)
    }
}

Last updated