IOS gets the system version string and converts it to the float type.

Source: Internet
Author: User

Obtaining the system version in IOS is relatively simple ([[UIDevicecurrentDevice] systemVersion]);

[[[UIDevice currentDevice] systemVersion] floatValue] is used to convert system strings to float on the network.

However, I encountered a problem in this method, that is, if the system version is 7.1.1, there is a problem with the float generated by the conversion, and the data generated by debug is 7.0899999999999. Cause a problem,

Later, I wrote a method to solve this problem.


+ (CGFloat) systemVersion {

NSString * sVersion = [[UIDevice currentDevice] systemVersion];

Nsange fRange = [sVersion rangeOfString: @ "."];


CGFloat version = 0.0f;

If (fRange. location! = NSNotFound ){
SVersion = [sVersion stringByReplacingOccurrencesOfString: @ "." withString: @ ""];
NSMutableString * mVersion = [NSMutableString stringWithString: sVersion];
[MVersion insertString: @ "." atIndex: fRange. location];
Version = [mVersion floatValue];
} Else {
// The version should be faulty (because the ios version is 7.0.1, no decimal point is found)
Version = [sVersion floatValue];
}

Return version;
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.