当我运行以下代码时,出现错误cannot convert value of type ('string: String)' to expected argument type 'URL'
var recorder = AVAudioRecorder(url: (string: URL(fileURLWithPath: NSTemporaryDirectory()).appendingPathComponent("tmp.caf").absoluteString), settings: [
AVFormatIDKey : Int(kAudioFormatAppleIMA4),
AVSampleRateKey : Int(44100),
AVNumberOfChannelsKey : Int(1),
AVLinearPCMBitDepthKey : Int(16),
AVLinearPCMIsBigEndianKey : false,
AVLinearPCMIsFloatKey : false
])
答案 0 :(得分:0)
这应该有效:
let recorder = AVAudioRecorder(url: URL(fileURLWithPath: NSTemporaryDirectory()).appendingPathComponent("tmp.caf"), settings: [
AVFormatIDKey : Int(kAudioFormatAppleIMA4),
AVSampleRateKey : Int(44100),
AVNumberOfChannelsKey : Int(1),
AVLinearPCMBitDepthKey : Int(16),
AVLinearPCMIsBigEndianKey : false,
AVLinearPCMIsFloatKey : false
])