2014-12-04 57 views
-1

在didFinishLaunchingWithOptions方法使用的PhoneGap在AppDelegate.m類即時通訊我的應用重定向到URL如下:PhoneGap的IOS獲取的PhoneGap的地址URL

NSString * url = [userDefaults stringForKey:@"url_preference"]; 
    NSURL * urlRedirect = [NSURL URLWithString:url]; 
    NSURLRequest * request = [NSURLRequest requestWithURL:urlRedirect]; 

    self.window.rootViewController = self.viewController; 
    [self.window makeKeyAndVisible]; 

    [self.viewController.webView loadRequest:request]; 

在MainViewController.m我有幾個按鈕通過點擊他們的應用程序重定向到其他網址。 如何獲取我在Phonegap平臺上的應用程序重定向到的地址url?

回答

1

MainViewController.m

self.viewController.webView.request.URL 

內的MainViewController.m

self.webView.request.URL