Skip to content

Instantly share code, notes, and snippets.

@Yorzic
Yorzic / DataCell.swift
Created May 29, 2020 15:52
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() {