-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTrimestresViewController.m
489 lines (387 loc) · 18.7 KB
/
TrimestresViewController.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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
//
// TrimestresViewController.m
// iLuno
//
// Created by Gabriel Vincent on 20/07/12.
// Copyright (c) 2012 _A_Z. All rights reserved.
//
#define BadGradeColor UIColorFromRGB(0xFC452B)
#define GoodGradeColor UIColorFromRGB(0x3B44FF)
#define DynamicContentSizeHeight (([arrayFields count]+(7-([arrayFields count]%7)))*40)
#define DynamicContentSizeHeightWhenKeyboardIsActive (([arrayFields count]+(4-([arrayFields count]%4)))*40)
#define ScrollViewContentSizeHeight self.scrollView.contentSize.height
#define ScrollViewWidth self.scrollView.frame.size.width
#define ScrollViewHeight self.scrollView.frame.size.height
#define ScrollViewOriginX self.scrollView.frame.origin.x
#define ScrollViewOriginY self.scrollView.frame.origin.y
#define ViewWidth self.view.frame.size.width
#define ViewHeight self.view.frame.size.height
#define ViewOriginX self.view.frame.origin.x
#define ViewOriginY self.view.frame.origin.y
#define ThisTextField [(UITextField *)self.scrollView viewWithTag:tag]
#define ThisLabelTextField [(UITextField *)self.scrollView viewWithTag:evenTag]
#define ThisGradeTextField [(UITextField *)self.scrollView viewWithTag:oddTag]
#define DeleteButtonsViewOriginX deleteButtonsView.frame.origin.x
#define DeleteButtonsViweHeight deleteButtonsView.frame.size.height
#import "TrimestresViewController.h"
@interface TrimestresViewController ()
@end
@implementation TrimestresViewController
@synthesize trimestreLabel, trimestreString, materiaString;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
#pragma mark Window methods
- (void) keyboardWasShown:(NSNotification *) notification {
[UIView animateWithDuration:0.2 animations:^{
self.view.frame = CGRectMake(ViewOriginX, ViewOriginY-4, ViewWidth, ViewHeight);
}];
self.scrollView.frame = CGRectMake(ScrollViewOriginX, ScrollViewOriginY, ScrollViewWidth, 160);
// if ([arrayFields count] > 4) self.scrollView.contentSize = CGSizeMake(0, DynamicContentSizeHeightWhenKeyboardIsActive);
if ([arrayFields count] > 4) self.scrollView.contentSize = CGSizeMake(0, ScrollViewContentSizeHeight+216);
}
- (void) keyboardWillBeHidden:(NSNotification *) notification {
[UIView animateWithDuration:0.2 animations:^{
self.view.frame = CGRectMake(ViewOriginX, ViewOriginY+4, ViewWidth, ViewHeight);
}];
self.scrollView.frame = CGRectMake(ScrollViewOriginX, ScrollViewOriginY, ScrollViewWidth, 280);
if ([arrayFields count] > 7) self.scrollView.contentSize = CGSizeMake(0, DynamicContentSizeHeight);
}
#pragma mark UITextField delegate methods
- (void) textFieldDidChange:(UITextField *)textField {
if (textField.tag%2 != 0) {
float grade = [textField.text floatValue];
if (grade >= 6.0) textField.textColor = GoodGradeColor;
else textField.textColor = BadGradeColor;
}
int index;
if (textField.tag%2 == 0) index = textField.tag/2;
else index = (textField.tag-1)/2;
NSMutableDictionary *fields = [arrayFields objectAtIndex:index];
NSString *key;
if (textField.tag%2 == 0) key = @"labelTextField";
else {
key = @"gradeTextField";
}
[arrayFields replaceObjectAtIndex:index withObject:fields];
[plistManager setValue:textField.text ForKey:key ForEntryAtIndex:index InDatabase:fileName];
}
- (void) textFieldDidBeginEditing:(UITextField *)textField {
}
- (void) textFieldDidEndEditing:(UITextField *)textField {
NSLog(@"Ended editing");
/*
if (deleteButtonIsReadyToDelete == NO) {
int index;
if (textField.tag%2 == 0) index = textField.tag/2;
else index = (textField.tag-1)/2;
NSMutableDictionary *fields = [arrayFields objectAtIndex:index];
NSString *key;
if (textField.tag%2 == 0) key = @"labelTextField";
else {
key = @"gradeTextField";
int grade = [textField.text floatValue];
// Colorizes the text, depending on the grade
if (grade >= 6.0) textField.textColor = GoodGradeColor;
else textField.textColor = BadGradeColor;
}
[arrayFields replaceObjectAtIndex:index withObject:fields];
[plistManager setValue:textField.text ForKey:key ForEntryAtIndex:index InDatabase:fileName];
}
*/
}
#pragma mark ViewController methods
- (void) didExitEditMode {
[self.scrollView endEditing:YES];
// Makes the user interaction disabled for all TextFields
for (UIView *view in self.scrollView.subviews) {
if ([view respondsToSelector:@selector(setTextColor:)]) {
view.userInteractionEnabled = NO;
}
}
int tag = deleteButton.tag;
[UIView animateWithDuration:0.2 animations:^{
deleteButtonsView.alpha = 0.0;
deleteButtonsView.transform = CGAffineTransformMakeTranslation(0, 0);
if (deleteButtonIsReadyToDelete) {
deleteButton.frame = CGRectMake(308, deleteButton.frame.origin.y, 0, 36);
deleteButton.alpha = 0.0;
[(UIButton *)deleteButtonsView viewWithTag:deleteButton.tag-1].transform = CGAffineTransformMakeRotation(0);
deleteButtonIsReadyToDelete = NO;
ThisTextField.frame = CGRectMake(246, ThisTextField.frame.origin.y, 55, ThisTextField.frame.size.height);
ThisTextField.alpha = 1.0;
}
} completion:^(BOOL finished){
if (deleteButtonIsReadyToDelete) [deleteButton removeFromSuperview];
}];
}
- (void) teste {
NSLog(@"Chamou");
}
- (void) didEnterEditMode {
// Makes the user interaction enabled for all TextFields
for (UIView *view in self.scrollView.subviews) {
if ([view respondsToSelector:@selector(setTextColor:)]) { // If the view is a UILabel
view.userInteractionEnabled = YES;
}
}
[UIView animateWithDuration:0.2 animations:^{
deleteButtonsView.alpha = 1.0;
deleteButtonsView.transform = CGAffineTransformMakeTranslation(25, 0);
}];
}
- (void) deleteFields {
int evenTag = deleteButton.tag-1;
int oddTag = deleteButton.tag;
// Sets a differente Tag so it won't interfer with the other objects with that tag
UIButton *deleteCircle = (UIButton *)[deleteButtonsView viewWithTag:evenTag];
deleteCircle.tag = -2;
// Slides to the right
[UIView animateWithDuration:0.2 animations:^{
ThisLabelTextField.frame = CGRectMake(ThisLabelTextField.frame.origin.x+8, ThisLabelTextField.frame.origin.y, ThisLabelTextField.frame.size.width, ThisLabelTextField.frame.size.height);
ThisGradeTextField.frame = CGRectMake(ThisGradeTextField.frame.origin.x+8, ThisGradeTextField.frame.origin.y, ThisGradeTextField.frame.size.width, ThisGradeTextField.frame.size.height);
deleteButton.frame = CGRectMake(deleteButton.frame.origin.x+8, deleteButton.frame.origin.y, deleteButton.frame.size.width, deleteButton.frame.size.height);
deleteCircle.frame = CGRectMake(deleteCircle.frame.origin.x+8, deleteCircle.frame.origin.y, deleteCircle.frame.size.width, deleteCircle.frame.size.height);
}
// Slides to the left and fades out
completion:^(BOOL finished){
[UIView animateWithDuration:0.2 animations:^{
ThisLabelTextField.frame = CGRectMake(ThisLabelTextField.frame.origin.x-200, ThisLabelTextField.frame.origin.y, ThisLabelTextField.frame.size.width, ThisLabelTextField.frame.size.height);
ThisGradeTextField.frame = CGRectMake(ThisGradeTextField.frame.origin.x-200, ThisGradeTextField.frame.origin.y, ThisGradeTextField.frame.size.width, ThisGradeTextField.frame.size.height);
deleteButton.frame = CGRectMake(deleteButton.frame.origin.x-200, deleteButton.frame.origin.y, deleteButton.frame.size.width, deleteButton.frame.size.height);
deleteCircle.frame = CGRectMake(deleteCircle.frame.origin.x-200, deleteCircle.frame.origin.y, deleteCircle.frame.size.width, deleteCircle.frame.size.height);
ThisLabelTextField.alpha = 0.0;
ThisGradeTextField.alpha = 0.0;
deleteButton.alpha = 0.0;
deleteCircle.alpha = 0.0;
}
// Animate the remaining views 40px up
completion:^(BOOL finished){
[UIView animateWithDuration:0.2 animations:^{
for (UIView *view in self.scrollView.subviews) {
if (![view isEqual:deleteButtonsView] && view.tag > evenTag) {
view.frame = CGRectMake(view.frame.origin.x, view.frame.origin.y-40, view.frame.size.width, view.frame.size.height);
}
}
for (UIView *view in deleteButtonsView.subviews) {
if (![view isEqual:deleteButtonsView] && view.tag > evenTag) {
view.frame = CGRectMake(view.frame.origin.x, view.frame.origin.y-40, view.frame.size.width, view.frame.size.height);
}
}
}
// Really remove the data
completion:^(BOOL finished){
[ThisLabelTextField removeFromSuperview];
[ThisGradeTextField removeFromSuperview];
[arrayFields removeObjectAtIndex:evenTag/2];
[plistManager removeEntryAtIndex:evenTag/2 FromDatabase:fileName];
// Cleans the deleteButtonsView
for (UIView *view in deleteButtonsView.subviews) {
[view removeFromSuperview];
}
// Cleans the scrollView
for (UIView *view in self.scrollView.subviews) {
if (![view isEqual:deleteButtonsView]) [view removeFromSuperview];
}
deleteButtonIsReadyToDelete = NO;
[self reloadData];
}];
}];
}];
}
- (void) toggleDeletionState:(UIView *) deleteCircle {
int tag = deleteCircle.tag+1;
// Second touch
if (deleteButtonIsReadyToDelete) {
for (UIView *view in deleteButtonsView.subviews) view.userInteractionEnabled = YES;
[UIView animateWithDuration:0.2 animations:^{
deleteCircle.transform = CGAffineTransformMakeRotation(0);
deleteButton.frame = CGRectMake(308, deleteButton.frame.origin.y, 0, 36);
ThisTextField.frame = CGRectMake(ThisTextField.frame.origin.x, ThisTextField.frame.origin.y, 55, ThisTextField.frame.size.height);
ThisTextField.alpha = 1.0;
}];
deleteButtonIsReadyToDelete = NO;
}
// First touch
else {
deleteButton = [UIButton buttonWithType:UIButtonTypeCustom];
[deleteButton setImage:[UIImage imageNamed:@"DeleteButton.png"] forState:UIControlStateNormal];
deleteButton.frame = CGRectMake(308, 12, 0, 36);
deleteButton.center = deleteCircle.center;
deleteButton.frame = CGRectMake(308, deleteButton.frame.origin.y, 0, 36);
deleteButton.tag = tag;
[deleteButton addTarget:self action:@selector(deleteFields) forControlEvents:UIControlEventTouchUpInside];
[self.scrollView addSubview:deleteButton];
for (UIView *view in deleteButtonsView.subviews) {
if (view.tag != deleteCircle.tag && [view isKindOfClass:[UIButton class]]) view.userInteractionEnabled = NO;
}
[UIView animateWithDuration:0.2 animations:^{
deleteCircle.transform = CGAffineTransformMakeRotation(-M_PI/2);
deleteButton.frame = CGRectMake(246, deleteButton.frame.origin.y, 62, 36);
ThisTextField.frame = CGRectMake(ThisTextField.frame.origin.x, ThisTextField.frame.origin.y, 0, ThisTextField.frame.size.height);
ThisTextField.alpha = 0.0;
}];
deleteButtonIsReadyToDelete = YES;
}
}
- (void)addFieldsForTrimester:(NSInteger)trimester OfSubject:(NSString *)subject {
if (![plistManager databaseAlreadyExistsWithName:fileName]) {
[plistManager createNewDatabaseWithName:fileName];
arrayFields = [NSMutableArray arrayWithArray:[plistManager databaseWithName:fileName]];
}
NSMutableDictionary *fieldsDictionary = [[NSMutableDictionary alloc] init];
// Cancels any started deletion
if (deleteButtonIsReadyToDelete) {
[UIView animateWithDuration:0.2 animations:^{
int tag = deleteButton.tag;
deleteButton.frame = CGRectMake(308, deleteButton.frame.origin.y, 0, 36);
deleteButton.alpha = 0.0;
[(UIButton *)deleteButtonsView viewWithTag:deleteButton.tag-1].transform = CGAffineTransformMakeRotation(0);
deleteButtonIsReadyToDelete = NO;
ThisTextField.frame = CGRectMake(246, ThisTextField.frame.origin.y, 55, ThisTextField.frame.size.height);
ThisTextField.alpha = 1.0;
}];
}
// Sets the textFields
UITextField *labelTextField = [[UITextField alloc] initWithFrame:CGRectMake(56, ([arrayFields count]*40)+15, 182, 30)];
labelTextField.font = [UIFont fontWithName:@"Noteworthy-Light" size:17];
labelTextField.placeholder = @"avaliação";
labelTextField.borderStyle = UITextBorderStyleNone;
labelTextField.textColor = UIColorFromRGB(0x222222);
labelTextField.tag = [arrayFields count]*2;
labelTextField.delegate = self;
[labelTextField addTarget:self action:@selector(textFieldDidChange:) forControlEvents:UIControlEventEditingChanged];
UITextField *gradeTextField = [[UITextField alloc] initWithFrame:CGRectMake(246, ([arrayFields count]*40)+15, 55, 30)];
gradeTextField.placeholder = @"nota";
gradeTextField.font = [UIFont fontWithName:@"Noteworthy-Bold" size:17];
gradeTextField.textAlignment = UITextAlignmentRight;
gradeTextField.borderStyle = UITextBorderStyleNone;
gradeTextField.tag = ([arrayFields count]*2)+1;
gradeTextField.delegate = self;
[gradeTextField addTarget:self action:@selector(textFieldDidChange:) forControlEvents:UIControlEventEditingChanged];
// Adds Them to the ScrollView
[self.scrollView addSubview:labelTextField];
[self.scrollView addSubview:gradeTextField];
[labelTextField becomeFirstResponder];
// Adds the delete buttons
UIButton *deleteCircle = [UIButton buttonWithType:UIButtonTypeCustom];
[deleteCircle setImage:[UIImage imageNamed:@"DeleteCircle.png"] forState:UIControlStateNormal];
deleteCircle.frame = CGRectMake(0, 0, 46, 36);
deleteCircle.center = labelTextField.center;
deleteCircle.frame = CGRectMake(0, deleteCircle.frame.origin.y, 46, 36);
deleteCircle.tag = labelTextField.tag;
deleteCircle.imageView.tag = -2; // Sets an unused tag so it won't interer with the views that really need this tag set
[deleteCircle addTarget:self action:@selector(toggleDeletionState:) forControlEvents:UIControlEventTouchUpInside];
deleteCircle.userInteractionEnabled = YES;
deleteButtonsView.frame = CGRectMake(0, 0, 46, deleteButtonsView.frame.size.height+40);
[deleteButtonsView addSubview:deleteCircle];
// Sets the dictionary
[fieldsDictionary setValue:@"" forKey:@"labelTextField"];
[fieldsDictionary setValue:@"" forKey:@"gradeTextField"];
[plistManager addNewEntry:fieldsDictionary ToDatabase:fileName];
// Saves to the array
[arrayFields addObject:fieldsDictionary];
// Sets the new contentSize
self.scrollView.contentSize = CGSizeMake(308, DynamicContentSizeHeightWhenKeyboardIsActive);
if ((labelTextField.tag/2)%4 == 0) [self.scrollView setContentOffset:CGPointMake(0, ScrollViewContentSizeHeight-216) animated:YES];
}
- (void) reloadData {
NSLog(@"Did reload");
NSLog(@"Array: %@", arrayFields);
[self setData];
// Makes the user interaction enabled for all TextFields
for (UIView *view in self.scrollView.subviews) {
if ([view respondsToSelector:@selector(setTextColor:)]) {
view.userInteractionEnabled = YES;
}
}
}
- (void) setData {
arrayFields = [NSMutableArray arrayWithArray:[plistManager databaseWithName:fileName]];
int i = 0;
for (NSDictionary *fields in arrayFields) {
// Sets the textFields
UITextField *labelTextField = [[UITextField alloc] initWithFrame:CGRectMake(56, (i*40)+15, 182, 30)];
labelTextField.font = [UIFont fontWithName:@"Noteworthy-Light" size:18];
labelTextField.borderStyle = UITextBorderStyleNone;
labelTextField.textColor = UIColorFromRGB(0x222222);
labelTextField.tag = i*2;
labelTextField.delegate = self;
labelTextField.text = [fields objectForKey:@"labelTextField"]; NSLog(@"LabelTexField: %@", labelTextField.text);
labelTextField.userInteractionEnabled = NO;
labelTextField.placeholder = @"avaliação";
[labelTextField addTarget:self action:@selector(textFieldDidChange:) forControlEvents:UIControlEventEditingChanged];
UITextField *gradeTextField = [[UITextField alloc] initWithFrame:CGRectMake(246, (i*40)+15, 55, 30)];
gradeTextField.text = @"0,00";
gradeTextField.font = [UIFont fontWithName:@"Noteworthy-Bold" size:17];
gradeTextField.textAlignment = UITextAlignmentRight;
gradeTextField.borderStyle = UITextBorderStyleNone;
gradeTextField.tag = (i*2)+1;
gradeTextField.delegate = self;
gradeTextField.text = [fields objectForKey:@"gradeTextField"];
gradeTextField.userInteractionEnabled = NO;
gradeTextField.placeholder = @"nota";
gradeTextField.keyboardType = UIKeyboardTypeDecimalPad;
[gradeTextField addTarget:self action:@selector(textFieldDidChange:) forControlEvents:UIControlEventEditingChanged];
int grade = [gradeTextField.text floatValue];
// Colorizes the text, depending on the grade
if (grade >= 6.0) gradeTextField.textColor = GoodGradeColor;
else gradeTextField.textColor = BadGradeColor;
// Adds them to the superview
[self.scrollView addSubview:labelTextField];
[self.scrollView addSubview:gradeTextField];
// Adds the delete buttons
UIButton *deleteCircle = [UIButton buttonWithType:UIButtonTypeCustom];
[deleteCircle setImage:[UIImage imageNamed:@"DeleteCircle.png"] forState:UIControlStateNormal];
deleteCircle.frame = CGRectMake(0, 0, 46, 36);
deleteCircle.center = labelTextField.center;
deleteCircle.frame = CGRectMake(0, deleteCircle.frame.origin.y, 46, 36);
deleteCircle.tag = labelTextField.tag; // Sets the same tag as the Label textfield
deleteCircle.imageView.tag = -2; // Sets an unused tag so it won't interfer with the views that really need this tag set
[deleteCircle addTarget:self action:@selector(toggleDeletionState:) forControlEvents:UIControlEventTouchUpInside];
deleteButtonsView.frame = CGRectMake(DeleteButtonsViewOriginX, 0, 46, DeleteButtonsViweHeight+40);
[deleteButtonsView addSubview:deleteCircle];
// Adds the objects to the arrayTextFields
NSMutableDictionary *textFieldsDictionary = [[NSMutableDictionary alloc] init];
[textFieldsDictionary setValue:labelTextField forKey:@"labelTextFields"];
[textFieldsDictionary setValue:gradeTextField forKey:@"gradesTextField"];
i++;
}
self.scrollView.contentSize = CGSizeMake(0, DynamicContentSizeHeight);
}
- (void)viewDidLoad
{
[super viewDidLoad];
self.trimestreLabel.text = self.trimestreString;
self.scrollView.frame = CGRectMake(0, 38, 308, 280);
plistManager = [[GVPlistPersistence alloc] init];
arrayFields = [[NSMutableArray alloc] init];
NSString *currentTrimester = [self.trimestreString stringByReplacingOccurrencesOfString:@"º " withString:@""];
fileName = [NSString stringWithFormat:@"CDN%@%@", currentTrimester, materiaString];
if ([plistManager databaseAlreadyExistsWithName:fileName]) {
[self setData];
}
deleteButtonIsReadyToDelete = NO;
}
- (void) viewWillAppear:(BOOL)animated {
// register for keyboard notifications
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWasShown:)
name:UIKeyboardDidShowNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillBeHidden:)
name:UIKeyboardWillHideNotification object:self.view.window];
}
- (void)viewDidUnload
{
[self setTrimestreLabel:nil];
[super viewDidUnload];
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
@end