iPhone智能应用程序横幅 – openUrl未调用

嘿stackoverflow研究员,

我最近尝试从Apple实施智能应用程序横幅。
他们工作但是,我无法在我的应用程序中获取app-argument数据。
该应用程序在iOS 5,6和7上运行,但我也尝试过iOS 6和7。
这是我的横幅代码:

 

这是我的实现:

 -(BOOL)application:(UIApplication*)application openURL:(NSURL*)url sourceApplication:NSString*)sourceApplication annotation:(id)annotation{ NSLog(@"URL: %@",url.absoluteString); UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard_iPhone" bundle: nil]; ReadViewController *dest = [storyboard instantiateViewControllerWithIdentifier:@"ReadVC"]; NSNumberFormatter *format = [[NSNumberFormatter alloc] init]; dest.uid = [format numberFromString: url.absoluteString]; [[[UIAlertView alloc] initWithTitle:@"Smart App" message:url.absoluteString delegate:nil cancelButtonTitle:@"Abbrechen" otherButtonTitles:nil]show]; return YES; 

}

永远不会调用此方法。 我不知道为什么。

这是一个报告的iOS7错误。 看看开放的bug报告它应该适用于iOS6