2012-10-26 242 views
4

我的想法是使用Phonegap的应用程序的业务逻辑,但使用本机转换。所以我需要在每个UIViewController中使用CDVWebView。这与正常的UIWebviews正常工作,但如果我使用多个CDVViewControllers例如一个TabBar,deviceReady事件只会触发第一个CDVWebView。Phonegap /科尔多瓦与多个CDVViewController

这是我在App代表做:

- (BOOL) application:(UIApplication*)application didFinishLaunchingWithOptions:(NSDictionary*)launchOptions 
{  
NSURL* url = [launchOptions objectForKey:UIApplicationLaunchOptionsURLKey]; 
NSString* invokeString = nil; 

if (url && [url isKindOfClass:[NSURL class]]) { 
    invokeString = [url absoluteString]; 
    NSLog(@"NativeNavigationTest launchOptions = %@", url); 
}  
NSLog(@"invokeString = %@", invokeString); 
CGRect screenBounds = [[UIScreen mainScreen] bounds]; 
self.window = [[[UIWindow alloc] initWithFrame:screenBounds] autorelease]; 
self.window.autoresizesSubviews = YES; 

CGRect viewBounds = [[UIScreen mainScreen] applicationFrame]; 


//4 ViewController, each one inherits from CDVViewController 

self.viewController = [[[MainViewController alloc] init] autorelease]; 
self.viewController.useSplashScreen = YES; 
self.viewController.wwwFolderName = @"www"; 
self.viewController.startPage = @"index.html"; 
self.viewController.invokeString = invokeString; 
self.viewController.view.frame = viewBounds; 

self.secondController = [[[SecondController alloc] init] autorelease]; 
self.secondController.useSplashScreen = YES; 
self.secondController.wwwFolderName = @"www"; 
self.secondController.startPage = @"second.html"; 
self.secondController.invokeString = invokeString; 
self.secondController.view.frame = viewBounds; 


self.thirdController = [[[ThirdController alloc] init] autorelease]; 
self.thirdController.useSplashScreen = YES; 
self.thirdController.wwwFolderName = @"www"; 
self.thirdController.startPage = @"third.html"; 
self.thirdController.invokeString = invokeString; 
self.thirdController.view.frame = viewBounds; 

self.fourthController = [[[FourthController alloc] init] autorelease]; 
self.fourthController.useSplashScreen = YES; 
self.fourthController.wwwFolderName = @"www"; 
self.fourthController.startPage = @"fourth.html"; 
self.fourthController.invokeString = invokeString; 
self.fourthController.view.frame = viewBounds; 


//add them in a native ViewController environment like a Tabbar 

self.tabBarController = [[[UITabBarController alloc] init] autorelease]; 
self.tabBarController.viewControllers = [NSArray arrayWithObjects:viewController, secondController, thirdController, fourthController, nil]; 
self.window.rootViewController = self.tabBarController; 
[self.window makeKeyAndVisible]; 
return YES; 

}

这是我获得每个视图控制器除了第一个错误。

Error: executing module function 'setInfo' in module 'cordova/plugin/ios/device'. Have you included the iOS version of the cordova-1.9.0.js 

ERROR: Attempting to call cordova.exec() before 'deviceready'. Ignoring. 

当然我指的是科尔多瓦-1.9.0在我的HTML文件,我认为科尔多瓦没有被设计为使用它的多个网页视图,但没有任何人知道如何改变这个?

+0

我相信这是Cordova中的一个错误,并且已经在他们的问题跟踪器中报告了它:https://issues.apache.org/jira/browse/CB-2271 –

回答

1

答案是Cordova WebView。设计用于嵌入本地应用程序。

编辑

与多个科尔多瓦网页视图,它具有相同的错误。当你仍然只能在你的项目中放置一个单一的基于Phonegap的Webview时,我不知道它有什么意义。