AVContentKeySession的makeStreamingContentKeyRequestDataForApp方法是异步方法,不能直接被强制同步。这是因为该方法涉及到网络请求和数据加密等耗时操作,如果强制同步执行,可能会导致UI卡顿或阻塞主线程。
如果需要在makeStreamingContentKeyRequestDataForApp方法执行完成后执行一些操作,可以使用闭包或代理模式来处理。
以下是使用闭包的示例代码:
func requestStreamingContentKey() {
    let contentKeyIdentifier = "your_content_key_identifier"
    let contentKeyContext = "your_content_key_context"
    
    let keySession = AVContentKeySession(keySystem: .fairPlayStreaming)
    keySession.setDelegate(self, queue: DispatchQueue.main)
    
    keySession.makeStreamingContentKeyRequestData(forApp: contentKeyIdentifier, contentIdentifier: contentKeyContext, options: nil) { data, error in
        if let error = error {
            // 处理错误
            print("Error requesting streaming content key: \(error.localizedDescription)")
        } else if let data = data {
            // 处理返回的数据
            print("Streaming content key request data: \(data)")
        }
    }
}
extension YourViewController: AVContentKeySessionDelegate {
    // 实现delegate方法,处理其他回调
    
    // 处理certificate请求
    func contentKeySession(_ session: AVContentKeySession, didProvide keyRequest: AVContentKeyRequest) {
        // 处理certificate请求
    }
    
    // 处理content key请求
    func contentKeySession(_ session: AVContentKeySession, didProvide keyRequest: AVPersistableContentKeyRequest) {
        // 处理content key请求
    }
}
在上面的代码中,通过传递一个闭包作为参数给makeStreamingContentKeyRequestDataForApp方法,当请求完成后,闭包内的代码会被执行。在闭包内,可以处理返回的数据或错误。
注意,makeStreamingContentKeyRequestDataForApp方法会异步执行,所以在闭包内处理返回数据或错误时,需要确保在主线程中更新UI。