您的位置:首页 > 移动开发 > IOS开发

phoneGap 打包ios 过程以及遇到的各种困难

2014-11-25 10:18 351 查看
1、用phoneGap 2.9 打包ios app  xcode 6.1    过程:

1)首先创建项目

2)将项目复制到www目录

3)设置问题

            (1)关于ios  7状态栏问题,只要加入如下代码就行了

- (void)viewWillAppear:(BOOL)animated

{

// View defaults to full size. If you want to customize the view's size, or its subviews (e.g. webView),

// you can do so here.

if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7) {

CGRect viewBounds = [self.webView bounds];

viewBounds.origin.y = 20;

viewBounds.size.height = viewBounds.size.height - 20;

self.webView.frame = viewBounds;

}

NSLog(@"%@",NSStringFromCGRect(self.view.frame));

[super viewWillAppear:animated];

}

- (void)viewDidLoad

{

if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7) {

[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleDefault];

}

[super viewDidLoad];

// Do any additional setup after loading the view from its nib.

}

(2)关于编译出现

file not found: /Users/xxxx/Library/Developer/Xcode/DerivedData/xxxx-gylybvwifdxjmtajtbvdsdpjcvkl/Build/Intermediates/ArchiveIntermediates/xxxx/InstallationBuildProductsLocation/Applications/libCordova.a

error: linker command failed with exit code 1 (use -v to see invocation)

解决办法是

Target's Build Settings-> Other Linker Flags

将 $(TARGET_BUILD_DIR)/libCordova.a 修改为 $(BUILT_PRODUCTS_DIR)/libCordova.a

(3)关于验证的时候闪退的问题

                 到www-bulid-MyAPPNavtive中删除xxx.app就可以了
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐