If I open this url
http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=318798264&mt=8
in Safari iOS would check if I have this app installed. If it is - the app will be launched otherwise I will be redirected to the AppStore app.
Is it possible to make UIWebView to do the same thing? The key thing is that system checks weather the app installed and has CFBundleURLTypes registered to respond.
EDIT: Sorry guys I was wrong with identifying the problem. There is actually another link that redirects to the direct (local) link that is registered for the app. I catch this now in
-(BOOL) webView:(UIWebView *)inWeb shouldStartLoadWithRequest:(NSURLRequest *)inRequest navigationType:(UIWebViewNavigationType)inType
and call
[[UIApplication sharedApplication] openURL:url]

UIApplication openURLto open this URL in Safari. I'm not sure if is it possible to do inside your app (without Safari), but note that Safari runs with different privileges (higher), so it might be impossible to do from inside a standard sandbox. – kuba Apr 6 '12 at 9:14