
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Detect iOS Version Running on the Device
When working on iOS applications, we sometimes need to know the version that's running on an iPhone device. In this article we'll learn how to find the iOS version being used, using an iOS Application.
Create an iOS application and in it's viewController's view did load function write the following code.
print(" System version - ",UIDevice.current.systemVersion)
This will return the iOS version of the device currently in use. Like current version of my simulator is iOS 12.0 hence the result comes as
System Version – 12.0
Advertisements