如何 获取 ios的系统版本号
时间:2014-10-24 11:01:53
收藏:0
阅读:325
获得Ios系统版本号的函数,比如
函数定义:
- + (float)getIOSVersion;
函数实现:
- + (float)getIOSVersion
- {
- return [[[UIDevice currentDevice] systemVersion] floatValue];
- }
原文:http://blog.csdn.net/sqc3375177/article/details/40422951
评论(0)