Skip to content

Instantly share code, notes, and snippets.

@Yorzic
Created May 29, 2020 15:52
Show Gist options
  • Save Yorzic/14f971b62eef0d2097c213b9fdd8ea90 to your computer and use it in GitHub Desktop.
Save Yorzic/14f971b62eef0d2097c213b9fdd8ea90 to your computer and use it in GitHub Desktop.
Data Cell Prototype
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