-
Notifications
You must be signed in to change notification settings - Fork 0
/
EventTableViewCell.swift
executable file
·42 lines (30 loc) · 1.02 KB
/
EventTableViewCell.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//
// EventTableViewCell.swift
// KGHS
//
// Created by Collin DeWaters and Taylor Courtney on 2/5/15.
// Copyright (c) 2015 CDWApps. All rights reserved.
//
import UIKit
class EventTableViewCell: UITableViewCell {
//Properties of eventstableviewcell
@IBOutlet weak var titleLabel: MarqueeLabel!
@IBOutlet weak var dateLabel: UILabel!
@IBOutlet weak var categoryImage: UIImageView!
@IBOutlet weak var categoryLabel: UILabel!
var cellContainsBGView = false
override func awakeFromNib() {
super.awakeFromNib()
// Initialization code
}
override init(style: UITableViewCellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
}
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
}
override func setSelected(selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
// Configure the view for the selected state
}
}