美文网首页
设备版本号

设备版本号

作者: e40c669177be | 来源:发表于2016-08-21 18:32 被阅读25次

pragma mark ---获取当前的版本号

NSString *filePath = [[NSBundle mainBundle] pathForResource:@"Info.plist" ofType:nil];
//字典中存放的是info.plist的所有内容
NSDictionary *dict = [NSDictionary dictionaryWithContentsOfFile:filePath];
NSString *version = dict[@"CFBundleShortVersionString"];
//第二种方法获取
version = [NSBundle mainBundle].infoDictionary[@"CFBundleShortVersionString"];
NSLog(@"%@",version);

相关文章

网友评论

      本文标题:设备版本号

      本文链接:https://www.haomeiwen.com/subject/cvlwsttx.html