Subversion Repositories Projects

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
805 - 1
//
2
//  MixerTableViewCell.h
3
//  iKopter
4
//
5
//  Created by Frank Blumenberg on 03.07.10.
6
//  Copyright 2010 de.frankblumenberg. All rights reserved.
7
//
8
 
9
#import <UIKit/UIKit.h>
10
 
11
 
12
@interface MixerTableViewCell : UITableViewCell {
13
  UILabel     *cellLabel;
14
  UITextField *cellTextGas;
15
  UITextField *cellTextNick;
16
  UITextField *cellTextRoll;
17
  UITextField *cellTextYaw;
18
}
19
 
20
@property (nonatomic, retain) IBOutlet UILabel     *cellLabel;
21
@property (nonatomic, retain) IBOutlet UITextField *cellTextGas;
22
@property (nonatomic, retain) IBOutlet UITextField *cellTextNick;
23
@property (nonatomic, retain) IBOutlet UITextField *cellTextRoll;
24
@property (nonatomic, retain) IBOutlet UITextField *cellTextYaw;
25
 
26
+ (NSString *)reuseIdentifier;
27
-(IBAction) exitEditing:(id)sender;
28
 
29
@end