// // ProfitListTableViewCell.swift // xingchuangke // // Created by Virgil on 2019/7/16. // Copyright © 2019 Virgil. All rights reserved. // import UIKit class ProfitListTableViewCell: UITableViewCell { @IBOutlet weak var lblMoney: UILabel! @IBOutlet weak var lblDate: UILabel! @IBOutlet weak var lblTitle: 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 } }