OSStatus NSOSStatusErrorDomain

I got the following error when I got the property using

AudioSessionGetProperty(kAudioSessionProperty_CurrentHardwareSampleRate,&size,
                                      &myAudioDescription.mSampleRate)

Error The above instruction

Error Domain=NSOSStatusErrorDomain Code=560557673 "The operation couldn’t be completed. (OSStatus error 560557673.)"

Now, what does 560557673 mean and where can I find his explanation?

The documentation provides only NSOSStatusErrorDomain as one of the errors.

+5
source share
1 answer

This code means that the size of the property data was incorrect.

OSStatus - , OS X iOS. 1 , , , MacErrors.h CarbonCore. , , , , , . , Xcode. , , , . , "" "", .

+14

All Articles