28 lines
640 B
Swift
28 lines
640 B
Swift
//
|
|
// DeviceChannelTableCell.swift
|
|
// pocloud
|
|
//
|
|
// Created by Patrick McDonagh on 6/19/18.
|
|
// Copyright © 2018 patrickjmcd. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class DeviceChannelTableCell: UITableViewCell {
|
|
|
|
@IBOutlet weak var valueLabel: UILabel!
|
|
@IBOutlet weak var nameLabel: UILabel!
|
|
@IBOutlet weak var timestampLabel: 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
|
|
}
|
|
|
|
}
|