gpt4 book ai didi

ios - 如何更改 "Camera and Photo Library Permission"描述?

转载 作者:行者123 更新时间:2023-11-29 05:47:44 26 4
gpt4 key购买 nike

我已在 info.plist 文件中的 NSCameraUsageDescription 和 NSPhotoLibraryUsageDescription 字段中指定了所需的文本,但没有任何更改。

始终显示相同的系统文本“此应用程序需要访问相机”和“此应用程序需要访问照片库”。我已经尝试在代码中找到它。没找到。我在文件 info.plist 中指定在我使用的所有库中添加我的 NSCameraUsageDescription 和 NSPhotoLibraryUsageDescription 键。尽管如此,一切都没有改变。

info.plist 文件

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleDisplayName</key>
<string>Mona</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>NSCameraUsageDescription</key>
<string>The program wants to access the camera so you can use your photos and camera in this photo editor.</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>The program wants to access the photo gallery so you can use your photos and camera in this photo editor.</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UIMainStoryboardFile</key>
<string>Main</string>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
</dict>
</plist>

警报图像 Alert image

请帮帮我。告诉我如何更改这些查询的描述。

最佳答案

该字符串存在于您正在使用的 Gallery 库的示例项目中。

   grep -r requires .

返回:

./Gallery-2.2.0/Example/GalleryDemo/GalleryDemo/Info.plist:     <string>This app requires access to camera</string>
./Gallery-2.2.0/Example/GalleryDemo/GalleryDemo/Info.plist: <string>This app requires access to photo library</string>

这可能有几个原因:

  1. 错误的plist

没有使用您发布的.plist,而是使用上面的

  1. Xcode 缓存

您使用的 bundle ID 与运行 Gallery 示例代码时使用的 bundle ID 相同。要确保不使用缓存:

  • 关闭 Xcode
  • 从设备/模拟器中删除应用
  • 清理派生数据
  • 打开 Xcode,构建并运行

关于ios - 如何更改 "Camera and Photo Library Permission"描述?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55982650/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com