gpt4 book ai didi

ios - replaykit startrecording 有时永远不会进入完成处理程序

转载 作者:搜寻专家 更新时间:2023-10-31 08:08:01 25 4
gpt4 key购买 nike

我正在使用重播工具包在游戏过程中保存我的屏幕视频,但有时 startRecordingWithMicrophoneEnabledrecorder.stopRecordingWithHandler 从未进入完成处理程序

它不会抛出错误,它只会无限期地运行和挂起。

if recorder.available && recorder.microphoneEnabled {
recorder.startRecordingWithMicrophoneEnabled(true) { [unowned self] (error) in
if let unwrappedError = error {
print(unwrappedError.localizedDescription)
} else {
print("called")
self.manager.instructions.text = "Click to Start Game"
}
}
}

if recorder.available && recorder.microphoneEnabled {
print("initiating stop recording")
recorder.stopRecordingWithHandler { [unowned self] (RPPreviewViewController, error) in
print("in completion handler")
if let previewView = RPPreviewViewController {
print("will transition to gameplay video")
previewView.previewControllerDelegate = self
self.presentViewController(previewView, animated: true, completion: nil)
self.sessionHandler.session.stopRunning()
}
}
}

最佳答案

我得到了同样的东西。在一台设备上工作,而不是在另一台设备上工作。唯一的区别是工作设备是 iOS 版本 10.1.0,另一个是 iOS 版本 10.0.2 - 升级到 10.2.0 并立即开始工作。

关于ios - replaykit startrecording 有时永远不会进入完成处理程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40033653/

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