简体   繁体   中英

IOS AVAudioSessionModeMeasurement error

Greeting. I am working on the app (IOS 7) that perform some audio management and want to disable all audio preprocessing. When I do

NSError *err;
    [audioSession setCategory:AVAudioSessionCategoryRecord error:&err];
    [audioSession setCategory:AVAudioSessionModeMeasurement error:&err];

    if (err) {
        NSLog(@"Audio Session category %@ %ld %@", [err domain], (long)[err code], [[err userInfo] description]);
    }

this piece of code returns

2014-04-08 00:39:12.573 okolly[2365:60b] 00:39:12.572 ERROR:     [0x3b83f18c] AVAudioSessionUtilities.mm:96: getUInt32: -- Category Value Converter failed
2014-04-08 00:39:12.575 okolly[2365:60b] Audio Session category NSOSStatusErrorDomain -50 {
}

both on simulator and on device. If I comment

[audioSession setCategory:AVAudioSessionModeMeasurement error:&err]; 

app works as expected.

What am I doing wrong? Thank you for help.

与setMode:中一样,AVAudioSessionModeMeasurement不是AVAudioSession类别属性,而是模式属性。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM