Cleaver、つまりPhoneGap/Cordovaを既存のiOSアプリケーションのコンポーネントとして使用しようとしました。私はこのステップバイステップガイドを2回実行しましたが、成功しませんでした。
私のアプリケーションは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
何が起こっているのか分かりますか?どんな助けでも大歓迎です!