Adds firebase auth
This commit is contained in:
27
pocloud/Cells/ChannelHistoryCell.swift
Normal file
27
pocloud/Cells/ChannelHistoryCell.swift
Normal file
@@ -0,0 +1,27 @@
|
||||
//
|
||||
// ChannelHistoryCell.swift
|
||||
// pocloud
|
||||
//
|
||||
// Created by Patrick McDonagh on 5/25/18.
|
||||
// Copyright © 2018 patrickjmcd. All rights reserved.
|
||||
//
|
||||
|
||||
import UIKit
|
||||
|
||||
class ChannelHistoryCell: UITableViewCell {
|
||||
|
||||
@IBOutlet weak var timestampLabel: 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
|
||||
}
|
||||
|
||||
}
|
||||
29
pocloud/Cells/DeviceDetailChannelCell.swift
Normal file
29
pocloud/Cells/DeviceDetailChannelCell.swift
Normal file
@@ -0,0 +1,29 @@
|
||||
//
|
||||
// DeviceDetailChannelCell.swift
|
||||
// pocloud
|
||||
//
|
||||
// Created by Patrick McDonagh on 5/24/18.
|
||||
// Copyright © 2018 patrickjmcd. All rights reserved.
|
||||
//
|
||||
|
||||
import UIKit
|
||||
|
||||
class DeviceDetailChannelCell: UITableViewCell {
|
||||
|
||||
@IBOutlet weak var channelNameLabel: UILabel!
|
||||
@IBOutlet weak var channelValueLabel: 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
|
||||
}
|
||||
|
||||
}
|
||||
27
pocloud/Cells/MapDetailDeviceCell.swift
Normal file
27
pocloud/Cells/MapDetailDeviceCell.swift
Normal file
@@ -0,0 +1,27 @@
|
||||
//
|
||||
// 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
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user