| 1234567891011121314151617181920212223242526272829 |
- //
- // IMChatMessageViewCell.swift
- // O2Platform
- //
- // Created by FancyLou on 2020/6/8.
- // Copyright © 2020 zoneland. All rights reserved.
- //
- import UIKit
- class IMChatMessageViewCell: UITableViewCell {
- @IBOutlet weak var titleLabel: UILabel!
- override func awakeFromNib() {
- super.awakeFromNib()
- // Initialization code
- }
- override func setSelected(_ selected: Bool, animated: Bool) {
- super.setSelected(selected, animated: animated)
- // Configure the view for the selected state
- }
-
- func setContent(item: IMMessageInfo) {
- self.titleLabel.text = item.createTime
- }
-
- }
|