You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
854 B

5 years ago
  1. //
  2. // AutoDebitTableViewCell.swift
  3. // GME Remit
  4. //
  5. // Created by Mac on 12/19/18.
  6. // Copyright © 2018 Gobal Money Express Co. Ltd. All rights reserved.
  7. //
  8. import UIKit
  9. class AutoDebitTableViewCell: UITableViewCell {
  10. @IBOutlet weak var labelRecipientName: UILabel!
  11. @IBOutlet weak var accountNumnerLabel: UILabel!
  12. @IBOutlet weak var mainView: UIView!
  13. func setup(with model: Account?) {
  14. let name = model?.bankName
  15. labelRecipientName.text = name
  16. accountNumnerLabel.text = model?.accountNumMasked
  17. // mainView.layer.borderColor = UIColor(red:0.91, green:0.93, blue:0.95, alpha:1.0).cgColor
  18. // mainView.layer.borderWidth = 1
  19. // mainView.layer.cornerRadius = 10
  20. layer.borderColor = UIColor(red:0.91, green:0.93, blue:0.95, alpha:1.0).cgColor
  21. layer.borderWidth = 1
  22. layer.cornerRadius = 10
  23. }
  24. }