适用于iPhone模拟器的MonoTouch编译器指令

时间:2012-06-07 08:58:55

标签: c# xamarin.ios compiler-directives

有没有人知道我在MonoTouch中使用的编译器指令,看看我是否在iPhone模拟器中运行?在任何地方找不到任何信息。

谢谢!

1 个答案:

答案 0 :(得分:11)

没有编译器指令(条件编译符号)来确定您是在iPhone模拟器中运行还是在设备上运行。

但是,您可以使用以下代码在运行时确定它:

using ObjCRuntime;
static bool InSimulator ()
{
    return Runtime.Arch == Arch.SIMULATOR;
}

这是从这里开始的:http://docs.xamarin.com/ios/recipes/General/Projects/Environment_Checks