mirror of
https://github.com/home-assistant/iOS.git
synced 2026-06-17 17:49:07 -05:00
- Combines all .entitlements into either: App-iOS, App-catalyst, WatchApp, Extension-iOS or Extension-catalyst. - Cleans up and renames all the schemes to match target names - Moves around several folders and deletes some old files. - Converts Podfile to be hierarchical, rather than calling shared methods. - Always runs MaterialDesignIcons script; aborts early if it's up-to-date. - Updates all dependencies.
16 lines
355 B
Swift
16 lines
355 B
Swift
//
|
|
// ClientEventCell.swift
|
|
// HomeAssistant
|
|
//
|
|
// Created by Stephan Vanterpool on 6/18/18.
|
|
// Copyright © 2018 Robbie Trencheny. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
public class ClientEventCell: UITableViewCell {
|
|
@IBOutlet weak var titleLabel: UILabel!
|
|
@IBOutlet weak var typeLabel: UILabel!
|
|
@IBOutlet weak var dateLabel: UILabel!
|
|
}
|