//
|
// Reason_Content_TCell.swift
|
// OKProject
|
//
|
// Created by 无故事王国 on 2023/4/14.
|
// Copyright © 2023 yangwang. All rights reserved.
|
//
|
|
import UIKit
|
import QMUIKit
|
|
class Reason_Content_TCell: UITableViewCell {
|
|
@IBOutlet weak var label_name: UILabel!
|
@IBOutlet weak var tf_phone: QMUITextField!
|
@IBOutlet weak var btn_delete: UIButton!
|
var index:IndexPath!
|
var clouse:((IndexPath)->Void)?
|
|
override func awakeFromNib() {
|
super.awakeFromNib()
|
selectionStyle = .none
|
}
|
|
@IBAction func deleteAction(_ sender: UIButton) {
|
clouse?(index)
|
}
|
|
func deleteComplete(_ clouse:@escaping (IndexPath)->Void){
|
self.clouse = clouse
|
}
|
}
|