-
Notifications
You must be signed in to change notification settings - Fork 0
/
PlaceView.m
201 lines (158 loc) · 5.22 KB
/
PlaceView.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
//
// PlaceView.m
// places-around-you
//
// Created by Enzo Zuccolotto on 6/20/11.
// Copyright 2011 Universidade do Vale do Rio dos Sinos. All rights reserved.
//
#import "PlaceView.h"
#import "AsyncImageView.h"
@implementation PlaceView
@synthesize place;
- (void)dealloc
{
[webpageButton release];
webpageButton = nil;
[mapsButton release];
mapsButton = nil;
// [place release];
// place = nil;
// [self.tableView release];
[super dealloc];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
}
#pragma mark - View lifecycle
-(void)setupMapButton
{
NSDictionary *location = [place objectForKey:@"point"];
if(location != nil)
{
NSString *latCheck= [[location objectForKey:@"lat"] stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
NSString *lngCheck= [[location objectForKey:@"lng"] stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
if((latCheck != nil && ![latCheck isEqualToString:@""] ) && (lngCheck != nil && ![lngCheck isEqualToString:@""]))
{
mapsButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[mapsButton setTitle:@"See om map" forState:UIControlStateNormal];
[mapsButton setFrame:CGRectMake(0, 0, 300, 45)];
[mapsButton addTarget:self action:@selector(openMapsURL:) forControlEvents:(UIControlEvents)UIControlEventTouchDown];
[mapsButton retain];
}
}
}
-(void)setupWebpageButton
{
NSString *url= [[place objectForKey:@"main_url"] stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
if(url != nil && ![url isEqualToString:@""]){
webpageButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[webpageButton setTitle:@"Site" forState:UIControlStateNormal];
[webpageButton setFrame:CGRectMake(0, 0, 300, 45)];
[webpageButton addTarget:self action:@selector(openWebpage:) forControlEvents:(UIControlEvents)UIControlEventTouchUpInside];
[webpageButton retain];
}
}
-(void)setupButtons
{
[self setupWebpageButton];
[self setupMapButton];
}
- (void)viewDidLoad
{
[place retain];
[self setupButtons];
[super viewDidLoad];
}
- (void)viewDidUnload
{
[self.tableView release];
[super viewDidUnload];
}
#pragma mark - Table view data source
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 2;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
if(section < 2)
{
return 2;
}else
return 0;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
if(indexPath.section == 0)
{
if(indexPath.row == 0)
{
[cell.textLabel setText:[place objectForKey:@"name"]];
}
else if(indexPath.row == 1)
{
NSMutableString *address = [[place objectForKey:@"address"] objectForKey:@"street"];
[address appendString:[[place objectForKey:@"address"] objectForKey:@"number"]];
[cell.textLabel setText:address];
}
}
else if(indexPath.section == 1)
{
if(indexPath.row == 0 )
{
if (webpageButton != nil) {
[cell setBackgroundColor:[UIColor clearColor]];
[cell.contentView addSubview:webpageButton];
}else{
[cell.textLabel setText:@"Homepage not available"];
}
}
else if(indexPath.row == 1)
{
if (mapsButton != nil) {
[cell setBackgroundColor:[UIColor clearColor]];
[cell.contentView addSubview:mapsButton];
}else{
[cell.textLabel setText:@"Maps not available"];
}
}
}
return cell;
}
#pragma mark - open buttons
-(IBAction)openMapsURL:(id)sender
{
NSMutableString *stringURL = [NSMutableString stringWithString:@"http://maps.google.com/maps?ll="];
NSString *lat = [[[place objectForKey:@"point"] objectForKey:@"lat"] autorelease];
NSString *lng = [[[place objectForKey:@"point"] objectForKey:@"lng"] autorelease];
[stringURL appendString:lat];
[stringURL appendString:lng];
UIApplication *app = [UIApplication sharedApplication];
NSURL *url = [NSURL URLWithString:stringURL];
if([app canOpenURL:url]){
[app openURL:url];
}else{
//alert
}
}
-(IBAction)openWebpage:(id)sender
{
NSURL *url = [NSURL URLWithString:[place objectForKey:@"main_url"]];
UIApplication *app = [UIApplication sharedApplication];
if([app canOpenURL:url]){
[app openURL:url];
}else{
//alert
}
}
#pragma mark - Table view delegate
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
}
@end