18c90f0c63
1 BuyStock 2 CustomCard 3 Crypto 4 MapParking 5 Sport 6 Taxi
23 lines
524 B
Swift
23 lines
524 B
Swift
import UIKit
|
|
import ContainerControllerSwift
|
|
|
|
// typealias CustomCardHeaderMainButtonActionCallback = () -> Void
|
|
|
|
class CustomCardHeaderMainView: XibView {
|
|
|
|
// MARK: - IBOutlets
|
|
|
|
@IBOutlet weak var titleLabel: UILabel?
|
|
@IBOutlet weak var subtitleLabel: UILabel?
|
|
@IBOutlet weak var imageView2: UIImageView?
|
|
|
|
// @IBOutlet weak var button: DesignButton!
|
|
|
|
override func loadedFromNib() {
|
|
|
|
}
|
|
|
|
// @IBAction func buttonClickAction(_ sender: DesignButton) {
|
|
// }
|
|
}
|