// // RecipientListTableViewCell.swift // GMERemittance // // Created by Fm-user on 12/21/17. // Copyright © 2017 Gobal Money Express Co. Ltd. All rights reserved. // import UIKit class RecipientListTableViewCell: UITableViewCell { @IBOutlet weak var labelInitial: UILabel! @IBOutlet weak var labelRecipientName: UILabel! var model: Recipient? override func awakeFromNib() { super.awakeFromNib() // Initialization code } func setup() { let name = model?.getFullName() labelRecipientName.text = name labelInitial.text = name?.prefix(1).uppercased() labelInitial.layer.cornerRadius = labelInitial.frame.size.width/2 labelInitial.backgroundColor = UIColor.init(hex: "#DE333C") layer.borderColor = UIColor(red:0.91, green:0.93, blue:0.95, alpha:1.0).cgColor layer.borderWidth = 1 layer.cornerRadius = 10 clipsToBounds = true } }