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.

26 lines
580 B

6 years ago
  1. //
  2. // WalletLoadMoreTableViewCell.swift
  3. // GMERemittance
  4. //
  5. // Created by Sujal on 4/28/18.
  6. // Copyright © 2018 Gobal Money Express Co. Ltd. All rights reserved.
  7. //
  8. import UIKit
  9. class WalletLoadMoreTableViewCell: UITableViewCell {
  10. @IBOutlet weak var buttonLoadMore: UIButton!
  11. override func awakeFromNib() {
  12. super.awakeFromNib()
  13. // Initialization code
  14. }
  15. override func setSelected(_ selected: Bool, animated: Bool) {
  16. super.setSelected(selected, animated: animated)
  17. // Configure the view for the selected state
  18. }
  19. }