在iPhone5(可能是iPad mini)上,此代码返回3个输入通道
UInt32 numInputChannels;
// Check the number of input channels.
UInt32 size = sizeof(numInputChannels);
UInt32 newNumChannels;
CheckError(AudioSessionGetProperty(kAudioSessionProperty_CurrentHardwareInputNumberChannels,
&size,
&newNumChannels), "Checking number of input channels");
numInputChannels = newNumChannels;
我的问题是为什么3? 我在iPhone4S,iPod4,iPad2,iPad3上检查了这个代码 - 它返回1 - 这是麦克风
但是其他2是什么?