5

可能真的很简单,但我找不到答案 - 我如何在运行时进行检查(使用 MonoTouch)以确保我在 iPhone 模拟器中(或不在)?

谢谢

4

1 回答 1

10

你可以这样做:

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

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

于 2012-05-30T10:14:40.160 回答