...
|
...
|
@@ -24,5 +24,5 @@ |
|
|
#define NS_BLOCK_ASSERTIONS 1
|
|
|
#endif
|
|
|
|
|
|
#define RMPostVersion7 ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0)
|
|
|
#define RMPreVersion7 ([[[UIDevice currentDevice] systemVersion] floatValue] < 7.0) |
|
|
#define RMPostVersion7 (floor(NSFoundationVersionNumber) > NSFoundationVersionNumber_iOS_6_1)
|
|
|
#define RMPreVersion7 (floor(NSFoundationVersionNumber) <= NSFoundationVersionNumber_iOS_6_1) |
...
|
...
|
|