Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am intended to do this I have a tab bar with 5 tab items and the first one is hooked up to TableViewController I would like the tableview datasource to be determined by the user location like city/state I have this code in -ViewDidLoad

locationManager = [[CLLocationManager alloc]init];
locationManager.delegate = self;
locationManager.distanceFilter = KCLDistanceFilterNone;
locationManager.desiredAccuracy = LCLLocationAccuracyHunderedMeters;
[locationManager startUpdatingLocation];

and then getting the location in didUpdateToLocation and setting to the userCurrentLocation property. But I can't get the userCurrentLocation to determine the datasource for the TableView. Please advise.

Where to set the datasource like the below

if (userLocation == @"Sydney") 
{
arrData = [NSMutableArray arrayWithObjects:@"San Francisco",nil];
}
else
{
arrData = [NSMutableArray arrayWithObjects:@"California",nil];

}

Thanks in advance.

share|improve this question

1 Answer

up vote 1 down vote accepted

You would need to respond to the delegate method didUpdateToLocations, so I would recommend you to only start loading your tableview after this method is called:

- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation

That way you will guarantee you got an answer. See the delegate documentation for further information.

Edit:

First you would have to set your class as the a CLLocationManagerDelegate you would do that in the header file of your class.

Although you would probably have to create your UITableViewController in the viewDidLoad method though you would have to add your view controller tho the main view when the didUpdateToLocation delegate method is called.

If you need something else, let me know.

share|improve this answer
Thanks heaps. But can you please give an example of code snippet how can i load the table view which i am currently in after this method. Thanks in advance. – developer9 Dec 4 '11 at 10:17
I've just edited my post. :D – El Developer Dec 6 '11 at 17:12
Thanks D. I will try that. cheers – developer9 Dec 8 '11 at 3:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.