---
title: "How to check iOS version?"  
description: "How to check iOS version?"  
author: "Anonymous User"  
published: 2015-04-27  
updated: 2015-04-27  
canonical: https://www.mindstick.com/forum/23146/how-to-check-ios-version  
category: "iphone"  
tags: ["iphone", "ios"]  
reading_time: 1 minute  

---

# How to check iOS version?

I want to [check if](https://www.mindstick.com/forum/12878/how-to-check-if-an-asp-dot-net-file-upload-control-has-a-file-in-jquery) the [iOS](https://www.mindstick.com/articles/12222/core-data-and-how-to-use-it-in-ios-objective-c) [version](https://www.mindstick.com/articles/12845/things-to-remember-while-migrating-odoo-to-a-better-version) of the [device](https://www.mindstick.com/blog/149/retriving-network-device-information-in-c-sharp) is greater than 3.1.3 I tried things like:\

```
[[UIDevice currentDevice].systemVersion floatValue]
```

but it does not work, I just want a:\

```
if (version > 3.1.3) { }
```

How can I achieve this?

## Replies

### Reply by Anonymous User

```
[[NSProcessInfo processInfo] operatingSystemVersion] 
```

in iOS 8 and above.


---

Original Source: https://www.mindstick.com/forum/23146/how-to-check-ios-version

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
