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.

My Home UIView requires current Location coordinates and I wouldn't want it to be called until I have these coordinates. How best can I achieve this?

in this code, the view is called before the update of current location:

 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

        currentLocation = [[CLLocation alloc] init];
    locationManager = [[CLLocationManager alloc] init];
    locationManager.delegate = self;
    [locationManager startUpdatingLocation];

TTNavigator *navigator = [TTNavigator navigator];
            navigator.persistenceMode = TTNavigatorPersistenceModeAll;
            TTURLMap *map = navigator.URLMap;

            [map from:@"tt://HomeView" toViewController:  viewController];
            [navigator openURLAction:[TTURLAction actionWithURLPath:@"tt://HomeView"]];
        }
share|improve this question

1 Answer

users can have Location service turned off. so I wouldn't do that.. Instead check for the location after the didFinishLaunchingWithOptions, so that your current problem will be solved. and add one more screen for user to turn on the location service if it's off.

share|improve this answer
Without the Location service, the app is useless. – erastusnjuki Jan 22 '11 at 8:48
Yes, I get that.. didFinishLaunchingWithOptions is not good place to check that.. if user don't allow to use location service your app will never open. at least display some message to let user know. – D-Griffin Jan 22 '11 at 18:02

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.