19 lines
354 B
Swift
19 lines
354 B
Swift
//
|
|
// CommonCellCard.swift
|
|
// Wallet
|
|
//
|
|
// Created by Igor on 21.02.2021.
|
|
// Copyright © 2021 AM. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class CommonCellCard: UITableViewCell {
|
|
@IBOutlet weak var cardView: CommonViewCard!
|
|
|
|
override func prepareForReuse() {
|
|
super.prepareForReuse()
|
|
self.cardView.prepareForReuse()
|
|
}
|
|
}
|