-
Notifications
You must be signed in to change notification settings - Fork 0
/
FormularioContatoViewController.m
231 lines (201 loc) · 8.7 KB
/
FormularioContatoViewController.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
//
// FormularioContatoViewController.m
// CaelumIP67
//
// Created by Caio Incau on 30/07/12.
// Copyright (c) 2012 Caio Incau. All rights reserved.
//
#import "FormularioContatoViewController.h"
#import "Contato.h"
#import <CoreLocation/CoreLocation.h>
@interface FormularioContatoViewController ()
@end
@implementation FormularioContatoViewController
//construtor, digitar init e dar esc, gera construtor
- (id)init
{
self = [super init];
if (self) {
self.navigationItem.title = @"Cadastro";
UIBarButtonItem *cancela = [[UIBarButtonItem alloc]initWithTitle:@"Cancela" style:UIBarButtonItemStylePlain target:self action:(@selector(escondeFormulario))];
self.navigationItem.leftBarButtonItem = cancela;
UIBarButtonItem *adiciona =[[UIBarButtonItem alloc]initWithTitle:@"Adiciona" style:UIBarButtonItemStylePlain target:self action:@selector(criaContato)];
self.navigationItem.rightBarButtonItem = adiciona;
}
return self;
}
- (id)initWithContato:(Contato *)_contato
{
self = [super init];
if (self) {
self.contato = _contato;
UIBarButtonItem *adiciona =[[UIBarButtonItem alloc]initWithTitle:@"Confirmar" style:UIBarButtonItemStylePlain target:self action:@selector(altera)];
self.navigationItem.rightBarButtonItem = adiciona;
self.navigationItem.title = @"Alterar";
}
return self;
}
@synthesize campoEmail,campoEndereco,campoNome,campoSite,campoTelefone,contatos,contato,delegate,campoTwitter,botaoFoto,campoAtual,campoLatitude,campoLongitude;
-(void)altera{
Contato *contatoAtualizado = [self pegaDadosDoFormulario];
[self.navigationController popViewControllerAnimated:YES];
if(self.delegate){
[self.delegate contatoAtualizado:contatoAtualizado];
}
}
-(void)textFieldDidBeginEditing:(UITextField *)textField{
campoAtual = textField;
}
-(void)textFieldDidEndEditing:(UITextField *)textField{
campoAtual=nil;
}
-(IBAction)selecionaFoto:(id)sender{
if([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]){
UIActionSheet *sheet = [[UIActionSheet alloc]
initWithTitle:@"Escolha sua foto"
delegate:self
cancelButtonTitle:@"Cancelar"
destructiveButtonTitle:nil
otherButtonTitles:@"Tirar foto", @"Escolher da Biblioteca",nil];
}
else{
UIImagePickerController *picker = [[UIImagePickerController alloc]init];
picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
picker.allowsEditing = YES;
picker.delegate = self;
[self presentModalViewController:picker animated:YES];
}
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}
-(void)actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger)buttonIndex{
UIImagePickerController *picker = [[UIImagePickerController alloc]init];
picker.delegate = self;
picker.allowsEditing = YES;
switch (buttonIndex) {
case 0:
picker.sourceType = UIImagePickerControllerSourceTypeCamera;
break;
case 1:
picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
break;
default:
break;
}
[self presentModalViewController:picker animated:YES];
}
-(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info{
UIImage *imagemSelecionada = [info valueForKey:UIImagePickerControllerEditedImage];
[botaoFoto setImage:imagemSelecionada forState:UIControlStateNormal];
[picker dismissModalViewControllerAnimated:YES];
}
-(Contato *)pegaDadosDoFormulario{
if (!self.contato){
contato = [[Contato alloc]init];
}
if(botaoFoto.imageView.image){
contato.foto = botaoFoto.imageView.image;
}
contato.nome = campoNome.text;
contato.telefone = campoTelefone.text;
contato.email = campoEmail.text;
contato.endereco = campoEndereco.text;
contato.site = campoSite.text;
contato.twitter = campoTwitter.text;
contato.latitude = [NSNumber numberWithFloat:[campoLatitude.text floatValue]];
contato.longitude = [NSNumber numberWithFloat:[campoLongitude.text floatValue]];
return contato;
// NSLog(@"contato com nome: %i",[self.contatos count]);
// NSMutableDictionary *dadosDoContato=[[NSMutableDictionary alloc]init];
// [dadosDoContato setObject:[campoNome text] forKey:@"nome"];
// [dadosDoContato setObject:[campoTelefone text] forKey:@"telefone"];
// [dadosDoContato setObject:[campoEmail text] forKey:@"email"];
// [dadosDoContato setObject:[campoEndereco text] forKey:@"endereco"];
// [dadosDoContato setObject:[campoSite text] forKey:@"site"];
// NSLog(@"dados :%@",dadosDoContato);
// StringWithFormat:@"%@ e tambem %@",O que vai no primeiro campo,o que vai no segundo;
}
-(void) criaContato{
[self.contatos addObject:[self pegaDadosDoFormulario]];
[self dismissModalViewControllerAnimated:YES];
if(self.delegate){
[self.delegate contatoAtualizado:contato];
}
}
-(void)limpaForm{
[campoNome setText:@""];
[campoTelefone setText:@""];
[campoEmail setText:@""];
[campoEndereco setText:@""];
[campoTelefone setText:@""];
[campoSite setText:@""];
[campoTwitter setText:@""];
}
-(IBAction)buscarCordenadas:(id)sender{
CLGeocoder *geocoder = [[CLGeocoder alloc]init];
[geocoder geocodeAddressString:campoEndereco.text completionHandler:
^(NSArray *resultados,NSError *error){
if (error==nil && [resultados count]>0) {
CLPlacemark *resultado = [resultados objectAtIndex:0];
CLLocationCoordinate2D coordenada = resultado.location.coordinate;
campoLatitude.text = [NSString stringWithFormat:@"%f",coordenada.latitude];
campoLongitude.text = [NSString stringWithFormat:@"%f",coordenada.longitude];
}
}];
}
//-(IBAction)escondeTeclado:(UITextView *)sender{
// [sender resignFirstResponder];
// UIScrollView *scroll = (UIScrollView*) self.view;
// CGPoint ponto = CGPointMake(-30.0, -30.0);
// [scroll setContentOffset:ponto];
//}
-(void) escondeFormulario {
[self dismissModalViewControllerAnimated:YES];
}
-(void) viewDidLoad{
[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(tecladoApareceu:) name:UIKeyboardDidShowNotification object:nil];
[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(tecladoSumiu:) name:UIKeyboardDidHideNotification object:nil];
if(self.contato){
campoNome.text = contato.nome;
campoTelefone.text = contato.telefone;
campoEmail.text = contato.email;
campoEndereco.text = contato.endereco;
campoSite.text = contato.site;
campoTwitter.text = contato.twitter;
campoLongitude.text = [contato.longitude stringValue];
campoLatitude.text = [contato.latitude stringValue];
if(contato.foto){
[botaoFoto setImage:contato.foto forState:UIControlStateNormal];
}
}
}
-(void)tecladoSumiu:(NSNotification *)notification{
}
-(void)tecladoApareceu:(NSNotification *)notification{
NSDictionary *info = [notification userInfo];
CGRect areaDoTeclado =[[info objectForKey:UIKeyboardFrameBeginUserInfoKey]CGRectValue];
CGSize tamanhoDoTeclado = areaDoTeclado.size;
UIScrollView *scroll = (UIScrollView*) self.view;
UIEdgeInsets margens = UIEdgeInsetsMake(0.0, 0.0, tamanhoDoTeclado.height, 0.0);
scroll.contentInset = margens;
scroll.scrollIndicatorInsets=margens;
if(campoAtual){
CGFloat alturaEscondida = tamanhoDoTeclado.height+self.navigationController.navigationBar.frame.size.height;
CGRect tamanhoDaTela = scroll.frame;
tamanhoDaTela.size.height -=alturaEscondida;
CGSize scrollContentSize = scroll.contentSize;
scrollContentSize.height+=alturaEscondida;
[scroll setContentSize:scrollContentSize];
BOOL campoAtualSumiu = !(CGRectContainsPoint(tamanhoDaTela, campoAtual.frame.origin));
if(campoAtualSumiu){
CGFloat tamanhoAdicional = tamanhoDoTeclado.height - self.navigationController.navigationBar.frame.size.height;
CGPoint pontoVisivel = CGPointMake(0.0, campoAtual.frame.origin.y-tamanhoAdicional);
CGSize scrollContentSize = scroll.contentSize;
scrollContentSize.height+=alturaEscondida;
[scroll setContentSize:scrollContentSize];
[scroll setContentOffset:pontoVisivel animated:YES];
}
}
}
@end