作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在我自己的设备上运行我的应用程序。目标是播放本地保存在音乐应用程序中的歌曲。我导入 MediaPlayer 并尝试执行以下操作
MPMediaLibrary.requestAuthorization { (status) in
if status == .authorized {
print("authorized")
}
}
<!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>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>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>NSAppleMusicUsageDescription</key>
<string>This app requires access to play music</string>
</dict>
</plist>
This app has crashed because it attempted to access privacy-sensitive data without a usage description. The app's Info.plist must contain an NSAppleMusicUsageDescription key with a string value explaining to the user how the app uses this data.
最佳答案
结果发现 Info.plist
有多个实例……我正在看目录下的那个,那个很容易被发现的。
相反,您需要通过转到顶部的项目设置-> 信息选项卡来访问正确的 plist。在那里添加它。
关于swift - 如何解决 NSAppleMusicUsageDescription 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61982490/
我目前正在我自己的设备上运行我的应用程序。目标是播放本地保存在音乐应用程序中的歌曲。我导入 MediaPlayer 并尝试执行以下操作 MPMediaLibrary.reque
我添加了电子邮件建议的 key ,还添加了下拉列表中的 key 。 我清理了项目。我不知道还能尝试什么。 这是来自 Apple 的电子邮件: Missing Info.plist key - This
我是一名优秀的程序员,十分优秀!