// // 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 } }