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.

34 lines
707 B

  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. var model: Account?
  12. override func awakeFromNib() {
  13. super.awakeFromNib()
  14. // Initialization code
  15. }
  16. func setup() {
  17. let name = model?.accountName
  18. labelRecipientName.text = name
  19. layer.borderColor = UIColor(red:0.91, green:0.93, blue:0.95, alpha:1.0).cgColor
  20. layer.borderWidth = 1
  21. layer.cornerRadius = 10
  22. clipsToBounds = true
  23. }
  24. }