| 12345678910111213141516171819202122232425262728 |
- //
- // RecentMessageCell.swift
- // SocketChat
- //
- // Created by Justine on 16/6/16.
- // Copyright © 2016年 AppCoda. All rights reserved.
- //
- import UIKit
- class RecentMessageCell: UITableViewCell {
- @IBOutlet weak var Avatar: UIImageView!
- @IBOutlet weak var Names: UILabel!
- @IBOutlet weak var content: UILabel!
- @IBOutlet weak var showtime: 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
- }
-
- }
|