I'm trying to open my app with a custom url scheme, and I can't figure out what's going on. When I type the scheme into Safari on the simulator after running the app, I get the following dialog:

In the Safari bar, I type "mycustomscheme://"
below is my plist :

Edit:
I forgot to method that I also have this method in my AppDelegate.m file:
- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url {
// Do something with the url here
DLog(@"here");
return YES;
}
Am I missing something obvious?

