Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在使用 Cordova 和 Xcode 为 iPhone 开发一个混合应用程序。
默认情况下,它会创建一个文件 index.html 并将其作为我的应用程序的起点。
我想知道有没有一种方法可以改变这个默认行为并且我的应用程序从我指定的页面开始?
您必须在应用程序委托文件中提供应用程序启动文件的引用。执行以下操作 1. 在 www 文件夹中创建并添加您的 html 页面 2. 在您的 appDelegate 文件中更改以下代码
self.viewController.wwwFolderName = @"www"; self.viewController.startPage = @"yourFile.html";