我尝试使用 Cleaver,即 PhoneGap / Cordova 作为现有 iOS 应用程序的组件。我两次按照此分步指南进行操作,但均未成功。
我的应用程序可以轻松地实例化 Web 视图,并且我可以使用该stringbyevaluatingjavascriptfromstring
方法将内容传递给它,但是一旦我尝试访问 PhoneGap API ( navigator.compass, navigator.network, ...
),似乎没有任何效果。console.log(navigator)
没有显示 Cordova 对象的迹象(console.log
不输出任何东西是 Xcode,我正在使用http://debug.phonegap.com/)。事件deviceready
也不会被触发。
在我的 html 文件中,我包含cordova-1.7.0rc1.js
了从另一个项目复制的 PhoneGap js 文件(因为/www
当您使用 PhoneGap 作为组件时文件夹丢失)。
我的ViewController.h
进口<Cordova/CDVViewController.h>
。这里我的ViewController.m
//
// ViewController.m
// CordovaComponent
//
#import "ViewController.h"
@interface ViewController (){
CDVViewController *cdvViewController ;
}
@end
@implementation ViewController
- (void)pushPhoneGap:(id)sender {
cdvViewController = [[CDVViewController alloc] init];
cdvViewController.wwwFolderName = @"www";
cdvViewController.startPage = @"index.html";
cdvViewController.view.frame = self.view.bounds;
cdvViewController.webView.delegate = self;
[self.navigationController pushViewController:cdvViewController animated:YES];
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
UIButton * button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[button setTitle:@"Push PhoneGap view" forState:UIControlStateNormal];
[button addTarget:self action:@selector(pushPhoneGap:) forControlEvents:UIControlEventTouchUpInside];
button.frame = CGRectMake(60, 50, 200., 50.);
[self.view addSubview:button];
}
- (void)viewDidUnload
{
[super viewDidUnload];
// Release any retained subviews of the main view.
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}
- (void)webViewDidFinishLoad:(UIWebView *)webView {
NSString *jsReturn = [cdvViewController.webView stringByEvaluatingJavaScriptFromString:@"setArray([1, 1, 2, 3, 5, 8, 13, 21, 34, 1]);"];
NSLog(jsReturn);
}
@end
你知道发生了什么吗?任何帮助将不胜感激 !