BrandForWithdrawCell.swift 896 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // BrandForWithdrawCell.swift
  3. // xingchuangke
  4. //
  5. // Created by 李晓飞 on 2020/9/7.
  6. // Copyright © 2020 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. typealias TotalBlock = () -> Void
  10. class BrandForWithdrawCell: UITableViewCell {
  11. @IBOutlet weak var brandLabel: UILabel!
  12. @IBOutlet weak var earnTextField: UITextField!
  13. var dataDic: NSDictionary!
  14. var totalBlock: TotalBlock?
  15. override func awakeFromNib() {
  16. super.awakeFromNib()
  17. // Initialization code
  18. }
  19. @IBAction func btnClicked(_ sender: Any) {
  20. earnTextField.text = "\(getDoubleValue(dic: dataDic, key: "profitBalance"))"
  21. if totalBlock != nil {
  22. totalBlock!()
  23. }
  24. }
  25. override func setSelected(_ selected: Bool, animated: Bool) {
  26. super.setSelected(selected, animated: animated)
  27. // Configure the view for the selected state
  28. }
  29. }