ContactPersonInfoCell.swift 629 B

12345678910111213141516171819202122232425262728
  1. //
  2. // ContactPersonInfoCell.swift
  3. // O2Platform
  4. //
  5. // Created by 程剑 on 2017/7/11.
  6. // Copyright © 2017年 zoneland. All rights reserved.
  7. //
  8. import UIKit
  9. class ContactPersonInfoCell: UITableViewCell {
  10. @IBOutlet weak var nameLab: UILabel!
  11. @IBOutlet weak var valueLab: UILabel!
  12. @IBOutlet weak var eventBut: UIButton!
  13. override func awakeFromNib() {
  14. super.awakeFromNib()
  15. // Initialization code
  16. }
  17. override func setSelected(_ selected: Bool, animated: Bool) {
  18. super.setSelected(selected, animated: animated)
  19. // Configure the view for the selected state
  20. }
  21. }