Files
POCloud-iOS/pocloud/Cells/MapDetailDeviceCell.swift
Patrick McDonagh 80f2241604 Adds firebase auth
2018-06-01 13:36:16 -05:00

28 lines
605 B
Swift

//
// MapDetailDeviceCell.swift
// pocloud
//
// Created by Patrick McDonagh on 5/25/18.
// Copyright © 2018 patrickjmcd. All rights reserved.
//
import UIKit
class MapDetailDeviceCell: UITableViewCell {
@IBOutlet weak var deviceTypeLogo: UIImageView!
@IBOutlet weak var deviceTypeLabel: 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
}
}