暂无描述

MessageSystemCell.swift 556B

1234567891011121314151617181920212223242526
  1. //
  2. // MessageSystemCell.swift
  3. // Paiai_iOS
  4. //
  5. // Created by FFIB on 16/5/13.
  6. // Copyright © 2016年 FFIB. All rights reserved.
  7. //
  8. import UIKit
  9. import PaiaiDataKit
  10. import PaiaiUIKit
  11. final class MessageSystemCell: UITableViewCell {
  12. @IBOutlet weak var time: UILabel!
  13. @IBOutlet weak var content: UILabel!
  14. @IBOutlet weak var name: UILabel!
  15. @IBOutlet weak var userImage: UIImageView!
  16. func setInfo(_ info: MessageListItem) {
  17. name.text = info.title
  18. content.text = info.content
  19. time.text = info.createAt
  20. }
  21. }