FreeRDP
Loading...
Searching...
No Matches
BookmarkTableCell.m
1/*
2 Custom bookmark table cell
3
4 Copyright 2013 Thincast Technologies GmbH, Author: Martin Fleisz
5
6 This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
7 If a copy of the MPL was not distributed with this file, You can obtain one at
8 http://mozilla.org/MPL/2.0/.
9 */
10
11#import "BookmarkTableCell.h"
12
13@implementation BookmarkTableCell
14
15@synthesize title = _title, subTitle = _sub_title, connectionStateIcon = _connection_state_icon;
16
17- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
18{
19 if ((self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]))
20 {
21 // Initialization code
22 }
23 return self;
24}
25
26- (void)setSelected:(BOOL)selected animated:(BOOL)animated
27{
28
29 [super setSelected:selected animated:animated];
30
31 // Configure the view for the selected state
32}
33
34- (void)dealloc
35{
36 [super dealloc];
37}
38
39@end