如何编辑Visual Studio Multi-Hybrid App Cordova插件生成的iOS代码?每次我在iOS上编译和运行项目时,都会在Mac主机上生成一个新的项目文件夹。问题是iOS项目上的状态栏与应用程序背景重叠。我可以通过在Mac上编辑MainViewController.m来解决这个问题,但如果我再次从Windows Visual Studio运行应用程序,则不会保存我所做的编辑。
每次运行应用程序时,必须执行哪些操作才能更改Cordova生成的MainViewController.m源文件?我尝试将已编辑的MainViewController.m文件添加到Visual Studio中的merges / ios目录,但该文件不会覆盖在每个构建时生成的MainViewController.m文件。非常感谢任何建议。
以下是我尝试添加到生成的MainViewController.m的代码,以便状态栏不与应用程序背景重叠:
- (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.
// Lower screen 20px on ios 7
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;
}
[super viewWillAppear:animated];
}