Core Location question....
- by Moshe
This tutorial on mobileorchard.com uses 2 classes (or 2 sets of .h and .m) to implement core location. Can I just use everything there in my existing class? How would I do that?
Also, is the
- (id) init {
self = [super init];
if (self != nil) {
self.locationManager = [[[CLLocationManager alloc] init] autorelease];
self.locationManager.delegate = self; // send loc updates to myself
}
return self;
}
method the same as the usual initWithNib?
I;m trying to quickly implement something based on location information. As much help describing the above linked tutorial would be helpful.
Thanks. No - really, Thank You.