无法转换类型的值('字符串:字符串)'预期参数类型' URL'

时间:2017-03-18 18:24:56

标签: ios swift3

当我运行以下代码时,出现错误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
        ])

1 个答案:

答案 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
            ])