-
Notifications
You must be signed in to change notification settings - Fork 0
/
GfrCalculatorViewController.h
38 lines (26 loc) · 1.08 KB
/
GfrCalculatorViewController.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//
// GfrCalculatorViewController.h
// endotools
//
// Created by Johnson Thomas on 12/29/12.
// Copyright (c) 2012 Johnson Thomas. All rights reserved.
//
#import <UIKit/UIKit.h>
#include <math.h>
@interface GfrCalculatorViewController : UIViewController
@property (strong, nonatomic) IBOutlet UITextField *Age;
@property (strong, nonatomic) IBOutlet UITextField *Screatinine;
@property (strong, nonatomic) IBOutlet UISegmentedControl *AfricanAmerican;
@property (strong, nonatomic) IBOutlet UISegmentedControl *Sex;
@property (strong, nonatomic) IBOutlet UITextField *Gfr;
//@property (nonatomic, strong) IBOutlet UISegmentedControl *AfricanAmerican;
//@property (nonatomic, strong) IBOutlet UISegmentedControl *Sex;
//@property (nonatomic, strong) IBOutlet UITextField *Age;
//@property (nonatomic, strong) IBOutlet UITextField *Screatinine;
//@property (nonatomic, strong) IBOutlet UITextField *Gfr;
-(IBAction)CalculateGFR :(id)sender;
-(IBAction)hidekeyboard:(id)sender;
-(IBAction)AAChnaged :(id)sender;
-(IBAction)Sexchanged :(id)sender;
-(IBAction)keyboardisappear:(id)sender;
@end