1234567891011121314151617181920212223242526 |
- //
- // AddressSelectedTableViewCell.swift
- // sdjy
- //
- // Created by Virgil on 2017/5/4.
- // Copyright © 2017年 Virgil. All rights reserved.
- //
- import UIKit
- class AddressSelectedTableViewCell: UITableViewCell {
- @IBOutlet weak var viewLine: UIView!
- @IBOutlet weak var lblName: 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
- }
- }
|