OSStatus error 1718449215

1718449215 is the decimal representation of the four character code for the kAudioFormatUnsupportedDataFormatError error.
这个错误码是kAudioFormatUnsupportedDataFormatError的错误码,他代表你初始化AVAudioRecorder时,传入的文件路径的后缀名跟AVFormatIDKey的类型对应不上(比如你传入一个.mp3的路径,但是AVFormatIDKey却是kAudioFormatLinearPCM)就会报这个错,请检查你的初始化是否对应。

In general you can use something like this to get more information from the errors you receive:
如果你想看到错误详情,那么可以用如下代码获得。

NSError *error = [NSError errorWithDomain:NSOSStatusErrorDomain
                          code:my_error_code
                          userInfo:nil];
NSLog(@"Error: %@", [error description]);

答案来自Stack Overflow

你可能感兴趣的:(iOS,iOS,OSStatus,error,AVAudio,NSError)