I want to check if the iOS version of the device is greater than 3.1.3 I tried things like:
iOS
3.1.3
[[UIDevice currentDevice].systemVersion
Try this
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7) { // do some work }