を使用してい
:handleOpenURL方法は、おそらく理解する:
// this happens while we are running (in the background, or from within our own app)
// only valid if Calinda-Info.plist specifies a protocol to handle
- (BOOL) application:(UIApplication*)application handleOpenURL:(NSURL*)url
アプリケーションがない場合、このメソッドが呼び出されることはありませんランニング。私のソリューションは、以下のように変更してプロジェクトを微調整することでした:
MainViewController.h
@interface MainViewController : CDVViewController
@property (nonatomic, retain) NSString *URLToHandle;
@end
MainViewController.m
- (void) webViewDidFinishLoad:(UIWebView*) theWebView
{
if (self.URLToHandle)
{
NSString* jsString = [NSString stringWithFormat:@"window.setTimeout(function() {handleOpenURL(\"%@\"); },1);", self.URLToHandle];
[theWebView stringByEvaluatingJavaScriptFromString:jsString];
}
[...]
}
- (void)dealloc
{
self.URLToHandle = nil;
[super dealloc];
}
@synthesize URLToHandle;
AppDelegate.m
- (BOOL) application:(UIApplication*)application didFinishLaunchingWithOptions:(NSDictionary*)launchOptions
{
[...]
self.viewController = [[[MainViewController alloc] init] autorelease];
self.viewController.useSplashScreen = YES;
self.viewController.wwwFolderName = @"www";
self.viewController.startPage = @"index.html";
self.viewController.view.frame = viewBounds;
// Patch for handleOpenURL
((MainViewController *)self.viewController).URLToHandle = URLToHandle;
[...]
}
お役に立てば幸いです。
シリル
その他の注意:テストするときは、必ずxcodeを停止してください。 xcodeが実行されていたとき、アプリケーションは例外をスローします。私がxcodeを停止すると、この解決策はうまく動作します。
がコードヴァーア3.5で同じ問題を抱えています(いくつかのバージョンで修正されていると思います)。今では、iOSはhandleOpenUrlなどを廃止しました。一方で、以下の有効な回答はうまくいくはずです。 – mentat