I have an issue with QR Readers. I encode a URL within a QR Code. When read by many iPhone App they will open the URL within a WebView within the app.

I want to open a vcard there which those internal things just wont do - page stays blank whilst when opened directly in safari everything works great.

So my question is: Is there any way to get out of the WebView and open the safari?

Regards Nik

link|improve this question
Off topic: This is not a programming question as you are asking about other peoples apps. I suggest you ask it over a t apple.stackexchange.com – rjstelling Oct 5 '11 at 9:13
This is a general question of how to escape out of a webview - no 3rd party app in particular. Maybe someone has another hint for me... Here is some more information Visit this URL vcard.nikb.de in Safari and probably a VCard will show up api.qrserver.com/v1/create-qr-code/… if you scan this QR it wont (for me) – Niksac Oct 5 '11 at 10:14
The fact is it's still off topic as it's not a programming question. And better asked on apple.stackexchange.com – rjstelling Oct 5 '11 at 11:57
feedback

2 Answers

NSURL *url = [NSURL URLWithString:@"http://www.google.com"];

if (![[UIApplication sharedApplication] openURL:url])
  NSLog(@"%@%@",@"Failed to open url:",[url description]);
link|improve this answer
I think he wants something to put in the HTML returned by his URL. It sounds like his issue is with apps that he doesn't control accessing the URL that he does control. – morningstar Oct 5 '11 at 8:00
you are right morningstar – Niksac Oct 5 '11 at 8:45
feedback

No, there is no way to do this, you are at the mercy of the app creators.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.