diff --git a/docs/tutorial/app-nativeresource-ios.md b/docs/tutorial/app-nativeresource-ios.md index 6056bc8a4f771a10893cfe059fa55307ae65bd0a..68149895687a7355a5eb7234f76b182bbbd4c751 100644 --- a/docs/tutorial/app-nativeresource-ios.md +++ b/docs/tutorial/app-nativeresource-ios.md @@ -9,12 +9,12 @@ app打包,在iOS原生开发中提供了配置 Info.plist 和 资源文件(B HBuilderX3.6.1起,支持直接在应用项目中配置 iOS 平台的 Info.plist 和 资源文件(Bundle Resources)。 -## 配置文件 iOSInfo.plist +## 配置文件 Info.plist 在HBuilderX中,对项目根目录右键菜单 "新建" -> "自定义文件" ![](https://native-res.dcloud.net.cn/images/uniapp/nativeresource/newfile.png) -输入文件名称 `iOSInfo.plist`(注意大小写敏感),点击 “创建” 按钮新建文件 +输入文件名称 `Info.plist`(注意大小写敏感),点击 “创建” 按钮新建文件 ![](https://native-res.dcloud.net.cn/images/uniapp/nativeresource/ios/info.png) 根据应用需求编辑添加需要的内容,如下示例: @@ -44,7 +44,7 @@ HBuilderX3.6.1起,支持直接在应用项目中配置 iOS 平台的 Info.plis - plist文件必须符合Apple Information Property List规范,参考[详情](https://developer.apple.com/documentation/bundleresources/information_property_list) * 文件头需加`` * 根节点必须是plist,二级节点必须是dict -- iOSInfo.plis的内容和manifest.json的内容应避免冲突,即不配置manifest中已经配置过的内容。云端打包时会合并到app中的Info.list文件,出现冲突时iOSInfo.plist的内容会覆盖manifest.json中配置 +- Info.plis的内容和manifest.json的内容应避免冲突,即不配置manifest中已经配置过的内容。云端打包时会合并到app中的Info.list文件,出现冲突时Info.plist的内容会覆盖manifest.json中配置 - plist文件配置需提交云端打包后才能生效,真机运行时请使用[自定义调试基座](https://ask.dcloud.net.cn/article/35115)