patbef-iOS/Befund/Controls/UITableViewCell/ResultsTableViewCell.swift

35 lines
867 B
Swift
Raw Permalink Normal View History

2024-01-29 16:20:42 +01:00
//
// ResultsTableViewCell.swift
// Befund
//
// Created by Irakli Abetschkhrischwili on 27.05.22.
// Copyright © 2022 MVZ Dr. Stein und Kollegen. All rights reserved.
import UIKit
class ResultsTableViewCell: UITableViewCell {
public static let identifier = "ResultsTableViewCell"
@IBOutlet var title: UILabel!
@IBOutlet weak var subtitle: UILabel!
@IBOutlet weak var identifier: UILabel!
@IBOutlet weak var icon: UIButton!
public static func nib() -> UINib
{
return UINib(nibName: "ResultsTableViewCell", bundle: nil)
}
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
}
}