-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMyCLController.m
67 lines (53 loc) · 1.37 KB
/
MyCLController.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
//
// MyCLController.m
// iTrackMe
//
// Created by Tobias Carlander on 16/08/2011.
// Copyright (c) 2011 Tobias Carlander. All rights reserved.
//
// Toby
#import "MyCLController.h"
@implementation MyCLController
@synthesize locationManager;
@synthesize delegate = _delegate;
@synthesize running;
- (id) init {
self = [super init];
if (self != nil) {
self.locationManager = [[CLLocationManager alloc] init] ;
self.locationManager.delegate = self; // send loc updates to myself
self.locationManager.distanceFilter = 10;
}
return self;
}
- (void)locationManager:(CLLocationManager *)manager
didUpdateToLocation:(CLLocation *)newLocation
fromLocation:(CLLocation *)oldLocation
{
[self.delegate locationUpdate:newLocation];
}
- (void)locationManager:(CLLocationManager *)manager
didFailWithError:(NSError *)error
{
NSLog(@"Error: %@", [error description]);
}
-(void)locationManagerStop
{
[self.locationManager stopUpdatingLocation];
[self.locationManager stopUpdatingHeading];
running = FALSE;
}
-(void)locationManagerStart
{
[self.locationManager startUpdatingLocation];
[self.locationManager startUpdatingHeading];
running = TRUE;
}
-(void) locationToggler{
if (!self.running){
[self locationManagerStart];
}else{
[self locationManagerStop];
}
}
@end