IMChatMessageViewCell.swift 645 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // IMChatMessageViewCell.swift
  3. // O2Platform
  4. //
  5. // Created by FancyLou on 2020/6/8.
  6. // Copyright © 2020 zoneland. All rights reserved.
  7. //
  8. import UIKit
  9. class IMChatMessageViewCell: UITableViewCell {
  10. @IBOutlet weak var titleLabel: UILabel!
  11. override func awakeFromNib() {
  12. super.awakeFromNib()
  13. // Initialization code
  14. }
  15. override func setSelected(_ selected: Bool, animated: Bool) {
  16. super.setSelected(selected, animated: animated)
  17. // Configure the view for the selected state
  18. }
  19. func setContent(item: IMMessageInfo) {
  20. self.titleLabel.text = item.createTime
  21. }
  22. }