Obtén GPS sin vista de alerta con permiso ROOT (jailbreak)

¿Cómo puedo obtener gps sin vista de alerta (iPhone desbloqueado)?

NSString *newText;

CLLocationManager * locationManager = [[CLLocationManager alloc] init];
[locationManager startUpdatingLocation];
[locationManager setDesiredAccuracy:kCLLocationAccuracyNearestTenMeters];

CLLocation* location = [locationManager location];
CLLocationCoordinate2D coordinate = [location coordinate];

newText = [[NSString alloc] initWithFormat: @"Your Position : %f %f", coordinate.latitude, coordinate.longitude];

NSLog(@"%@", newText);

Respuestas a la pregunta(1)

Su respuesta a la pregunta