iOS版では、あなたのAppDelegate.mファイルでshouldStartLoadWithRequest方法を変更する必要があります
- (BOOL)webView:(UIWebView *)theWebView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
{
NSURL *url = [request URL];
if ([ [url scheme] isEqualToString:@"http"] || [ [url scheme]
isEqualToString:@"https"])
{
return YES;
} else {
return [ super webView:theWebView shouldStartLoadWithRequest:request
navigationType:navigationType];
}
}
を次に、あなたが変更を持つことができますあなたとのwwwフォルダ内のローカルのindex.html:
<html>
<body onload="document.location.href='http://yourComputerIpOrServer/index.html';">
<h1>Loading....</h1>
</body>
</html>
もちろん、これはデバッグ専用です。あなたはそれをAppStoreに提出するべきではありません。それは禁止されており、却下されます。
PhoneGapでこれを行うことができますOpenAllWhitelistURLsInWebViewをYESに切り替え、ドメインを外部ホストとして追加することで今すぐリストを作成できます。 – jocull