ContactPersonInfoCell.swift 726 B

1234567891011121314151617181920212223242526272829
  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. self.eventBut.theme_setImage(ThemeImagePicker(keyPath:"Icon.Shapes"), forState: .normal)
  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. }