1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| //
| // SimulatorDetect.h
| // SecurityGuardSDKPro
| //
| // Created by yangzhao.zy on 15/8/21.
| // Copyright (c) 2015年 alibaba. All rights reserved.
| //
|
| #ifndef SecurityGuardSDKPro_SimulatorDetect_h
| #define SecurityGuardSDKPro_SimulatorDetect_h
|
| @interface SimulatorDetect : NSObject
|
| + (BOOL) isSimulator;
|
| @end
|
| #endif
|
|