3
AudioSessionSetProperty(kAudioSessionProperty_PreferredHardwareIOBufferDuration, sizeof(bufferLength), &bufferLength);
如何可以每花邊我此方法在IOS 7 ??更換棄用AudioSessionSetProperty
AudioSessionSetProperty(kAudioSessionProperty_PreferredHardwareIOBufferDuration, sizeof(bufferLength), &bufferLength);
如何可以每花邊我此方法在IOS 7 ??更換棄用AudioSessionSetProperty
AudioSession api在iOS7中被棄用,轉而支持AVAudioSession類。要更換你的電話,你需要使用setPreferredIOBufferDuration:error:
方法:
NSError* error;
[session setPreferredIOBufferDuration:bufferLength error:&error];
還要注意緩衝duration
是不一樣的緩衝區大小,緩衝區大小應足以容納音頻數據的持續時間。
'[AVAudioSession sharedInstance]'? – Larme