我在WWDC 15 Fox项目的APPLCharacter.m文件中找到了这行有趣的代码。 SCNAudioSource *_steps[StepsSoundCount][AAPLFloorMaterialCount];
这是枚举typedef NS_ENUM(NSUInteger, AAPLFloorMaterial) { AAPLFloorMaterialGrass, AAPLFloorMaterialRock, AAPLFloorMaterialWater, AAPLFloorMaterialInTheAir, AAPLFloorMaterialCount};
和#define StepsSoundCount 10
_steps是什么类型?
如何将其转化为敏捷?
最佳答案
它是一个静态的二维C数组。那是一个SCNAudioSource
实例数组的数组。外部数组由“材料”索引,每个子数组包含每个步骤的源。
关于ios - “SCNAudioSource * _steps [StepsSoundCount] [AAPLFloorMaterialCount]”的类型,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31154109/