Skip to main content

Search Chatroom Cell

Overview

The LMChatSearchChatroomCell is used to display search results for chatrooms. It shows the chatroom icon and name.

UI Components

  • groupIcon: An LMImageView displaying the chatroom icon.
  • titleLabel: An LMLabel showing the chatroom name.

Methods

  • configure(with:): Initializes the cell with the provided ContentModel data.

Customization

CustomSearchChatroomCell
class CustomSearchChatroomCell: LMChatSearchChatroomCell {
override func setupAppearance() {
super.setupAppearance()
// Add custom styling here
}
}
AppDelegate.swift
func application(_ application: UIApplication, willFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil) -> Bool {
LMUIComponents.shared.searchChatroomCell = CustomSearchChatroomCell.self
// ...
return true
}