-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBaseViewControllercopy.m
157 lines (113 loc) · 4.06 KB
/
BaseViewControllercopy.m
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
//
// BaseViewController.m
// BWSimulatorOS
//
// Created by Carson Chow on 1/2/13.
// Copyright (c) 2013 NIDDK, NIH. All rights reserved.
//
#import "BaseViewController.h"
#import "Person.h"
@implementation BaseViewController
@synthesize person;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nil bundle:nil];
if (self) {
UINavigationItem *tbi = [self navigationItem];
[tbi setTitle:@"Baseline Information"];
// UIImage *i = [UIImage imageNamed:@"Time.png"];
// [tbi setImage:i];
}
return self;
}
- (void) viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
[ageField setText:[NSString stringWithFormat:@"%d", [person age]]];
[heightField setText:[NSString stringWithFormat:@"%g", [person height]*100]];
[palField setText:[NSString stringWithFormat:@"%g", [person palInitial]]];
[intakeField setText:[NSString stringWithFormat:@"%g", [person teeInitial]]];
[weightField setText:[NSString stringWithFormat:@"%g", [person weightInitial]]];
}
- (void) viewWillDisappear:(BOOL)animated
{
[super viewWillDisappear:animated];
[[self view] endEditing:YES];
[person setAge:[[ageField text] intValue]];
// Convert sex field into integer 1 = female, 0 = male
NSString * sextext = [sexField text];
const char * c = [sextext UTF8String];
if (strncmp(c,"M",1)==0 || strncmp(c,"m",1)==0) {
[person setSex:0];
}
else
[person setSex:1];
[person setHeight:[[heightField text] doubleValue/100]];
[person setPalInitial:[[palField text] doubleValue]];
// [person setIntakeInitial:[[intakeField text] doubleValue]];
[person setWeightInitial:[[weightField text] doubleValue]];
NSLog(@"Age is %d",[person age]);
}
- (BOOL)textFieldShouldReturn:(UITextField *)textField
{
[intakeField setText:[NSString stringWithFormat:@"%g", [person teeInitial]]];
[textField resignFirstResponder];
[self setAttributes];
return YES;
}
- (void)textFieldDidBeginEditing:(UITextField *)textField
{
[self animateTextField: textField: YES];
}
- (void)textFieldDidEndEditing:(UITextField *)textField
{
[self animateTextField: textField: NO];
}
- (void) animateTextField: (UITextField*) textField: (BOOL) up
{
int animatedDistance;
int moveUpValue = textField.frame.origin.y+ textField.frame.size.height;
UIInterfaceOrientation orientation =
[[UIApplication sharedApplication] statusBarOrientation];
if (orientation == UIInterfaceOrientationPortrait ||
orientation == UIInterfaceOrientationPortraitUpsideDown)
{
animatedDistance = 320-(480-moveUpValue-5);
}
else
{
animatedDistance = 162-(320-moveUpValue-5);
}
if(animatedDistance>0)
{
const int movementDistance = animatedDistance;
const float movementDuration = 0.3;
int movement = (up ? -movementDistance : movementDistance);
[UIView beginAnimations: nil context: nil];
[UIView setAnimationBeginsFromCurrentState: YES];
[UIView setAnimationDuration: movementDuration];
self.view.frame = CGRectOffset(self.view.frame, 0, movement);
[UIView commitAnimations];
}
}
- (void)setAttributes
{
int age = [[ageField text] intValue];
NSString * sextext = [sexField text];
const char * c = [sextext UTF8String];
int sex = 1;
NSLog(@"%d, %d",strncmp(c,"M",1)==0, strncmp(c, "m", 1));
if (strncmp(c,"M",1)==0 || strncmp(c,"m",1)==0) {
sex = 0;
}
double height = [[heightField text] doubleValue];
double pal = [[palField text] doubleValue];
double intake = [[intakeField text] doubleValue];
double weight = [[weightField text] doubleValue];
NSLog(@"Age is %d, Sex is %d, Height is %g, pal is %g, intake is %g, weight is %g",age,sex,height,pal,intake,weight);
}
- (void)viewDidUnload {
ageField = nil;
[super viewDidUnload];
}
@end