This repository has been archived on 2026-05-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2019-07-21 21:14:38 +02:00
|
|
|
//
|
|
|
|
|
// ColourViewCell.swift
|
|
|
|
|
// AvH Plan
|
|
|
|
|
//
|
|
|
|
|
// Created by Deniz Duezgoeren on 21.07.19.
|
|
|
|
|
// Copyright © 2019 Deniz Duezgoeren. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
import UIKit
|
|
|
|
|
|
|
|
|
|
class ColourViewCell: GenericViewCell {
|
|
|
|
|
|
|
|
|
|
@IBOutlet weak var colorView: UIView!
|
|
|
|
|
@IBOutlet weak var label: UILabel!
|
2019-07-22 13:38:01 +02:00
|
|
|
@IBOutlet weak var imageView: UIImageView!
|
2019-07-21 21:14:38 +02:00
|
|
|
}
|