blob: 8e4f42f28d80cd7c0fe1bf500d7a51717c38765d [file] [log] [blame]
Silbino Goncalves Matadoeec4d582017-03-20 11:30:34 -04001/*
2 * Copyright (C) 2017 Savoir-faire Linux Inc.
3 *
4 * Author: Silbino Gonçalves Matado <silbino.gmatado@savoirfairelinux.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 */
20
21import UIKit
22
23class TextCell: UITableViewCell {
24
25 @IBOutlet weak var label: UILabel!
26
27 override func awakeFromNib() {
28 super.awakeFromNib()
29 // Initialization code
30 }
31
32 override func setSelected(_ selected: Bool, animated: Bool) {
33 super.setSelected(selected, animated: animated)
34
35 // Configure the view for the selected state
36 }
37
38}