如何获取App当前版本号

 NSDictionary *infoDic = [[NSBundle mainBundle] infoDictionary];

 NSString *currentVersion = [infoDic objectForKey:@"CFBundleShortVersionString"];

 cell.textLabel.text = [NSString stringWithFormat:@"当前版本:%@",currentVersion];

原文地址:https://www.cnblogs.com/CodingMann/p/4894646.html