我有一个按钮,当点击它时,我必须检查麦克风的权限。
由于这个原因,我这样做了:
public func askMicrophoneAuthorization()
{
recordingSession = AVAudioSession.sharedInstance()
recordingSession.requestRecordPermission() { [unowned self] allowed in
DispatchQueue.main.async {
if allowed
{
self.goToNextStep()
} else
{
self.denied()
}
}
}
}
我的问题是这样的:当我点击按钮并调用askMicrophoneAuthorization方法时,如果它是我第一次请求权限,则会显示麦克风系统警报,并在plist文件中插入文本,并且可以拒绝允许。如果我拒绝许可,然后重新点击按钮方法self.denied()就会执行,并且我看不到麦克风系统警报。 重新显示系统警报是否可能?
答案 0 :(得分:1)
如果用户已经拒绝,则无法显示系统警报。 最好的办法是检查权限,如果被拒绝,则使用打开应用程序设置的按钮显示警报。
func askPermissionIfNeeded() {
switch AVAudioSession.sharedInstance().recordPermission {
case undetermined:
askMicrophoneAuthorization()
case denied:
let alert = UIAlertController(title: "Error", message: "Please allow microphone usage from settings", preferredStyle: .alert)
alert.addAction(UIAlertAction(title: "Open settings", style: .default, handler: { action in
UIApplication.shared.open(URL(string: UIApplication.openSettingsURLString)!)
}))
alert.addAction(UIAlertAction(title: "Cancel", style: .cancel, handler: nil))
present(alert, animated: true, completion: nil)
case granted:
goToNextStep()
}
}