Created
May 29, 2020 15:52
-
-
Save Yorzic/14f971b62eef0d2097c213b9fdd8ea90 to your computer and use it in GitHub Desktop.
Data Cell Prototype
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
class DataCell: UITableViewCell { | |
// MARK: - Outlets | |
@IBOutlet weak var titleLabel: UILabel! | |
@IBOutlet weak var detailLabel: UILabel! | |
@IBOutlet weak var valueLabel: UILabel! | |
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 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment