I’m trying something like this to launch the compass from within my app:
NSString *stringURL = @"compass://";
NSURL *url = [NSURL URLWithString:stringURL];
[[UIApplication sharedApplication] openURL:url];
does anyone know the correct url to use to launch the compass app?
http://wiki.akosma.com/IPhone_URL_Schemes – I’m using this as a reference, but nothing about the compass is posted.
thanks for any help.
A quick look at Compas.app’s Info.plist shows no declaration of custom URL type, which means there is no public way to open it from your app, sorry.