Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a link on my mobile app (created with Sencha Touch 2) with a target="_blank" attribute. The app is packaged as a native iOS app. The problem is, the link is not opening in Safari as expected, instead it opens inside the app. It is very important that the link opens in Safari in a new browser window. How can I achieve that?

I should add that I am using the native packager of Sencha (sencha package). The default behaviour seems to open the new window in the same webview. But I need them to be opened in mobile Safari.

In an Xcode project I could do the following:

- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType {
    if (navigationType == UIWebViewNavigationTypeLinkClicked) {
        [[UIApplication sharedApplication] openURL:request.URL];
        return NO;
    }
    return YES;
}

How to do that with Sencha Touch native packaging?

share|improve this question
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"your link"]]; – NSNull Apr 2 '12 at 10:07
Please read my post, I am talking about using the native packager of the Sencha Touch framework. – tinytiger Apr 2 '12 at 11:00
There is definitely a way to do this if you do not use the native packager. – Alex L Apr 4 '12 at 21:38
Yes actually thats what I already had to do. But its not really an answer to my question. It would be great if there would be more options to configure the packaging process. – tinytiger Apr 5 '12 at 14:37
You can do this in sencha touch 2.1 with cmd beta 3: Ext.device.Device.openURL('url-to-open.com'); Source: docs.sencha.com/touch/2-1/#!/api/… – James Figues Feb 11 at 10:54

2 Answers

up vote 2 down vote accepted
+50

I haven't discovered a way to do this with sencha native packaging.

But wrapping the application in a phonegap and compiling the application in Xcode, with required urls added to the ExternalHost array in phonegap.plist should work right?

Also, (still on the Phonegap solution) I assume hacking AppDelegate.m to open links in Safari would work just as fine.

share|improve this answer
I give you that bounty because you provided the best answer. I also think now there is no way to do this in Sencha Touch and I ended up on another problem to use phonegap anyway. – tinytiger Apr 6 '12 at 19:25

I use this to open links in either Mobile Safari, or a new window. Works with Native iOS packaging and web apps:

function externalLink(link) {
try{
    Ext.device.Device.openURL(link);
}catch(err) {
    window.open(link, '_blank');
}
}
share|improve this answer
Thanks a lot for this function, Ben. – Thomas V. Mar 18 at 15:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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