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.

27 lines
597 B

  1. //
  2. // PaymentSelectionTableViewCell.swift
  3. // GME Remit
  4. //
  5. // Created by gme_2 on 07/01/2019.
  6. // Copyright © 2019 Gobal Money Express Co. Ltd. All rights reserved.
  7. //
  8. import UIKit
  9. class PaymentSelectionTableViewCell: UITableViewCell {
  10. @IBOutlet weak var titlelabel: UILabel!
  11. @IBOutlet weak var accountLabel: UILabel!
  12. var acunt: Account?
  13. override func awakeFromNib() {
  14. super.awakeFromNib()
  15. // Initialization code
  16. }
  17. func setup() {
  18. titlelabel.text = acunt?.bankName
  19. accountLabel.text = acunt?.accountNumMasked
  20. }
  21. }