我遇到了一个小问题。
我使用 replaykit 练习了广播上传扩展,
我想在发生异常时显示错误代码。
但我对此无能为力。
你会教我一个方法吗?
我讨厌(null)并想替换其他单词。
使用finishBroadcastWithError,NSError必须使用'NSLocalizedFailureReasonErrorKey'来描述。
您可以通过此协议处理此问题
finishBroadcastWithError()
在 RPBroadcast 处理程序中
更多参考苹果文档
例子:
let userInfo = [NSLocalizedFailureReasonErrorKey: "You have Stopped Screen Sharing"]
finishBroadcastWithError(NSError(domain: "ScreenShare", code: -1, userInfo: userInfo))