Reputation: 19248
Is it possible to open a webpage by launching Safari under iOS instead of stagewebview?
(note i have tried the URLrequest, which not work on the iDevice).
Thanks for any help
Upvotes: 0
Views: 924
Reputation: 2267
Use the navigateToURL function. It should automatically open the link in the actual safari browser.
navigateToURL(new URLRequest("http://www.domain.com"));
Upvotes: 2