Getting the above referenced error at locations shown below
******* expected specifier qualifier before UITextfield - error
#import <UIKit/UIKit.h>
@interface CircViewController : UIViewController
{
IBOutlet UITextField *diameter;
IBOutlet UITextField *slope;
IBOutlet UITextField *coeff;
IBOutlet UITextField *ratioDepth;
IBOutlet UILabel *flowResult;
IBOutlet UILabel *areaResult;
IBOutlet UILabel *hydRadResult;
}
@property (retain, nonatomic) IBOutlet UITextfield *diameter; *******
@property (retain, nonatomic) IBOutlet UITextfield *slope; *******
@property (retain, nonatomic) IBOutlet UITextfield *coeff; *******
@property (retain, nonatomic) IBOutlet UITextfield *ratioDepth; *******
@property (retain, nonatomic) IBOutlet UILabel *flowResult;
@property (retain, nonatomic) IBOutlet UILabel *areaResult;
@property (retain, nonatomic) IBOutlet UILabel *hydRadResult;
-(IBAction)calculate: (id)sender;
-(IBAction)hidekeyBoard: (id)sender;
@end
Any suggestions?
THX
******* expected specifier qualifier before UITextfield - error
#import <UIKit/UIKit.h>
@interface CircViewController : UIViewController
{
IBOutlet UITextField *diameter;
IBOutlet UITextField *slope;
IBOutlet UITextField *coeff;
IBOutlet UITextField *ratioDepth;
IBOutlet UILabel *flowResult;
IBOutlet UILabel *areaResult;
IBOutlet UILabel *hydRadResult;
}
@property (retain, nonatomic) IBOutlet UITextfield *diameter; *******
@property (retain, nonatomic) IBOutlet UITextfield *slope; *******
@property (retain, nonatomic) IBOutlet UITextfield *coeff; *******
@property (retain, nonatomic) IBOutlet UITextfield *ratioDepth; *******
@property (retain, nonatomic) IBOutlet UILabel *flowResult;
@property (retain, nonatomic) IBOutlet UILabel *areaResult;
@property (retain, nonatomic) IBOutlet UILabel *hydRadResult;
-(IBAction)calculate: (id)sender;
-(IBAction)hidekeyBoard: (id)sender;
@end
Any suggestions?
THX