Swift 4转换:错误无法使用类型的参数列表(AvAudioChannelCount)调用类型为“Int”的初始值设定项

时间:2017-08-07 07:00:06

标签: ios11 swift4

我正在将我的应用程序迁移到swift 4 ios 11 beta 4版本,我得到以下错误,请帮助我,如果有任何人遇到此问题。 提前谢谢。

for channelIndex in 0 ..< Int(audioFormat?.channelCount) {
                let frameMemory = channelMemory?[channelIndex]
                memcpy(frameMemory, allSamples, Int(frameCount) * MemoryLayout<Float>.size)
            }

It is giving an error message in integer converstion  -

INT(AudioFormat的?.channelCount)

    The error message is cannot invoke initializer for type Int with an argument list of type(AVAudioChannelCount)

0 个答案:

没有答案