MPMediaPickerController 显示白屏,没有错误
MPMediaPickerController shows white screen , no error
当我尝试演示 MPMediaPickerController
时出现白屏。之后,它会自动消失。我无法访问音乐库以在我的应用程序中导入歌曲。
真正奇怪的是控制台中没有打印出任何错误。
我正在物理 iPhone 设备上进行测试。
@IBAction func importSong(_ sender: Any) {
let mediaPicker: MPMediaPickerController = MPMediaPickerController.self(mediaTypes: MPMediaType.music)
mediaPicker.delegate = self
mediaPicker.allowsPickingMultipleItems = false
self.present(mediaPicker, animated: true, completion: nil)
}
在您的 Info.plist 文件中添加 NSAppleMusicUsageDescription
,例如:
<key>NSAppleMusicUsageDescription</key>
<string>App wants to use music</string>
当我尝试演示 MPMediaPickerController
时出现白屏。之后,它会自动消失。我无法访问音乐库以在我的应用程序中导入歌曲。
真正奇怪的是控制台中没有打印出任何错误。
我正在物理 iPhone 设备上进行测试。
@IBAction func importSong(_ sender: Any) {
let mediaPicker: MPMediaPickerController = MPMediaPickerController.self(mediaTypes: MPMediaType.music)
mediaPicker.delegate = self
mediaPicker.allowsPickingMultipleItems = false
self.present(mediaPicker, animated: true, completion: nil)
}
在您的 Info.plist 文件中添加 NSAppleMusicUsageDescription
,例如:
<key>NSAppleMusicUsageDescription</key>
<string>App wants to use music</string>