Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
805 | - | 1 | // |
2 | // MixerTableViewCell.m |
||
3 | // iKopter |
||
4 | // |
||
5 | // Created by Frank Blumenberg on 03.07.10. |
||
6 | // Copyright 2010 de.frankblumenberg. All rights reserved. |
||
7 | // |
||
8 | |||
9 | #import "MixerTableViewCell.h" |
||
10 | |||
11 | #define TABLE_CELL_IDENTIFIER @"Mixer Table Cell Identifier" |
||
12 | |||
13 | @implementation MixerTableViewCell |
||
14 | |||
15 | @synthesize cellLabel; |
||
16 | @synthesize cellTextGas; |
||
17 | @synthesize cellTextNick; |
||
18 | @synthesize cellTextRoll; |
||
19 | @synthesize cellTextYaw; |
||
20 | |||
21 | - (void)setSelected:(BOOL)selected animated:(BOOL)animated { |
||
22 | |||
23 | [super setSelected:selected animated:animated]; |
||
24 | |||
25 | // Configure the view for the selected state |
||
26 | } |
||
27 | |||
28 | |||
29 | - (void)dealloc { |
||
30 | [cellLabel release]; |
||
31 | [cellTextGas release]; |
||
32 | [cellTextNick release]; |
||
33 | [cellTextRoll release]; |
||
34 | [cellTextYaw release]; |
||
35 | [super dealloc]; |
||
36 | } |
||
37 | |||
38 | + (NSString *)reuseIdentifier |
||
39 | { |
||
40 | return (NSString *)TABLE_CELL_IDENTIFIER; |
||
41 | } |
||
42 | - (NSString *)reuseIdentifier |
||
43 | { |
||
44 | return [[self class] reuseIdentifier]; |
||
45 | } |
||
46 | |||
47 | |||
48 | -(IBAction) exitEditing:(id)sender { |
||
49 | NSLog(@"exit editing"); |
||
50 | [sender resignFirstResponder]; |
||
51 | } |
||
52 | |||
53 | @end |