// // Title_Btn_Cell.swift // GeliBusinessPlatform // // Created by junye lu on 2021/6/28. // Copyright © 2021 junye lu. All rights reserved. // import UIKit class Title_Btn_Cell: UITableViewCell { @IBOutlet weak var title_lbl: UILabel! @IBOutlet weak var add_adr_lbl: UILabel! @IBOutlet weak var arrow_img: UIImageView! override func awakeFromNib() { super.awakeFromNib() self.selectionStyle = .none // Initialization code } override func setSelected(_ selected: Bool, animated: Bool) { super.setSelected(selected, animated: animated) // Configure the view for the selected state } }