1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| //
| // SecurityGuardSDK version 2.3.0
| //
|
| #ifndef SecurityGuardSDK_IOpenSimulatorDetectComponent_h
| #define SecurityGuardSDK_IOpenSimulatorDetectComponent_h
|
| /**
| * 模拟器检测接口
| */
| @protocol IOpenSimulatorDetectComponent <NSObject>
|
| /**
| * 判断当前设备是否是iOS模拟器
| */
| - (BOOL) isSimulator;
|
| @end
|
| #endif
|
|