RecentMessageCell.swift 655 B

12345678910111213141516171819202122232425262728
  1. //
  2. // RecentMessageCell.swift
  3. // SocketChat
  4. //
  5. // Created by Justine on 16/6/16.
  6. // Copyright © 2016年 AppCoda. All rights reserved.
  7. //
  8. import UIKit
  9. class RecentMessageCell: UITableViewCell {
  10. @IBOutlet weak var Avatar: UIImageView!
  11. @IBOutlet weak var Names: UILabel!
  12. @IBOutlet weak var content: UILabel!
  13. @IBOutlet weak var showtime: UILabel!
  14. override func awakeFromNib() {
  15. super.awakeFromNib()
  16. // Initialization code
  17. }
  18. override func setSelected(selected: Bool, animated: Bool) {
  19. super.setSelected(selected, animated: animated)
  20. // Configure the view for the selected state
  21. }
  22. }