How to check iOS version delphi xe5 / xe6
1 answer
You can use the TOSVersion entry in System.SysUtils.
if TOSVersion.Check(7, 0) then //Os is iOS 7
You can also find a sample for iOS here .
+4
source to share