BondDebenturesTableViewCell.swift 671 B

12345678910111213141516171819202122232425262728
  1. //
  2. // BondDebenturesTableViewCell.swift
  3. // Product Calculator
  4. //
  5. // Created by Suraj Kumar Mandal on 30/11/21.
  6. //
  7. import UIKit
  8. class BondDebenturesTableViewCell: UITableViewCell {
  9. @IBOutlet var monthLabel: UILabel!
  10. @IBOutlet var amountDepositedLabel: UILabel!
  11. @IBOutlet var couponReceivedLabel: UILabel!
  12. @IBOutlet var totalCouponReceivedLabel: UILabel!
  13. override func awakeFromNib() {
  14. super.awakeFromNib()
  15. // Initialization code
  16. }
  17. override func setSelected(_ selected: Bool, animated: Bool) {
  18. super.setSelected(selected, animated: animated)
  19. // Configure the view for the selected state
  20. }
  21. }