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.
 
 
 
 

41 lines
1.1 KiB

//
// TranscationTableViewCell.swift
// GMERemittance
//
// Created by FMI-12 on 2/6/18.
// Copyright © 2018 Gobal Money Express Co. Ltd. All rights reserved.
//
import UIKit
protocol TableViewCellTransactionDelegate : class {
func loadMoreButtonAction(sender: TranscationTableViewCell)
}
class TranscationTableViewCell: UITableViewCell {
var loadMoreDelegate: TableViewCellTransactionDelegate?
@IBOutlet weak var labelDate: UILabel!
@IBOutlet weak var labelName: UILabel!
@IBOutlet weak var labelPayment: UILabel!
@IBOutlet weak var labelTranscationNo: UILabel!
@IBOutlet weak var labelAmountPay: UILabel!
@IBOutlet weak var loadMoreButtonOutlet: UIButton!
@IBAction func loadMoreButtonAction(_ sender: Any) {
loadMoreDelegate?.loadMoreButtonAction(sender: self)
}
override func awakeFromNib() {
super.awakeFromNib()
// Initialization code
}
override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
// Configure the view for the selected state
}
}