-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSWLocationController.m
More file actions
74 lines (49 loc) · 1.66 KB
/
SWLocationController.m
File metadata and controls
74 lines (49 loc) · 1.66 KB
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
//
// SWLocationController.m
// StarWorld
//
// Created by Aaron Baker on 9/13/11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import "SWLocationController.h"
@implementation SWLocationController
@synthesize locationManager;
@synthesize currentUser;
+ (SWLocationController*)locationControllerInstance{
static SWLocationController *locationControllerInstance;
@synchronized(self) {
if(!locationControllerInstance) {
locationControllerInstance= [[SWLocationController alloc] init];
}
}
return locationControllerInstance;
}
////////////////////////////////////////////////////////////////////////////////
- (id) init {
self = [super init];
currentUser = [SWCurrentUser currentUserInstance];
if (self != nil) {
self.locationManager = [[[CLLocationManager alloc] init] autorelease];
self.locationManager.delegate = self; // send loc updates to myself
}
return self;
}
////////////////////////////////////////////////////////////////////////////////
- (void)locationManager:(CLLocationManager *)manager
didUpdateToLocation:(CLLocation *)newLocation
fromLocation:(CLLocation *)oldLocation
{
currentUser.x = newLocation.coordinate.longitude;
currentUser.y = newLocation.coordinate.latitude;
//NSLog(@"NEW LOCATION! x: %f, y: %f",currentUser.x,currentUser.y);
}
- (void)locationManager:(CLLocationManager *)manager
didFailWithError:(NSError *)error
{
NSLog(@"**********************Location Error: %@", [error description]);
}
- (void)dealloc {
[self.locationManager release];
[super dealloc];
}
@end