AddressSelectedTableViewCell.swift 585 B

1234567891011121314151617181920212223242526
  1. //
  2. // AddressSelectedTableViewCell.swift
  3. // sdjy
  4. //
  5. // Created by Virgil on 2017/5/4.
  6. // Copyright © 2017年 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class AddressSelectedTableViewCell: UITableViewCell {
  10. @IBOutlet weak var viewLine: UIView!
  11. @IBOutlet weak var lblName: UILabel!
  12. override func awakeFromNib() {
  13. super.awakeFromNib()
  14. // Initialization code
  15. }
  16. override func setSelected(_ selected: Bool, animated: Bool) {
  17. super.setSelected(selected, animated: animated)
  18. // Configure the view for the selected state
  19. }
  20. }