我在WWDC 15 Fox项目中找到了这个有趣的代码行,文件APPLCharacter.m.Please告诉我类型,IDK很客观-c
SCNAudioSource *_steps[StepsSoundCount][AAPLFloorMaterialCount];
这是枚举
typedef NS_ENUM(NSUInteger, AAPLFloorMaterial) {
AAPLFloorMaterialGrass,
AAPLFloorMaterialRock,
AAPLFloorMaterialWater,
AAPLFloorMaterialInTheAir,
AAPLFloorMaterialCount
};
,并
#define StepsSoundCount 10
_steps是什么类型的? 怎么能把它翻译成swift?
答案 0 :(得分:1)
它是一个静态的二维C数组。这是SCNAudioSource
个实例的数组数组。外部数组由“材料”索引,每个子数组包含每个步骤的源。