EmailComposerプラグインを iPhone アプリに追加しようとしましたが、常にエラーが発生します。
Failed to load webpage with error: The requested URL was not found on this server.
asを変更しようとしたことがありshouldStartLoadWithRequest
ます:
- (BOOL) webView:(UIWebView*)theWebView shouldStartLoadWithRequest:(NSURLRequest*)request navigationType:(UIWebViewNavigationType)navigationType
{
NSURL *url = [request URL];
if ( [ [url scheme] isEqualToString:@"mailto"] )
{
return YES;
} else {
return [self.viewController webView:theWebView shouldStartLoadWithRequest:request navigationType:navigationType];
}
}
それでも同じエラーが発生します。PhoneGap を使用して iPhone アプリにメール機能を統合した人はいますか。
PhoneGap 1.4.1 を使用しています。
前もって感謝します。