iOS获取当前app版本

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

1
2
3
4
5
6
7
8
//软件版本 
- (void)softwareVersion 
    NSDictionary *infoDic = [[NSBundle mainBundle] infoDictionary]; 
    NSString *currentVersion = [NSString stringWithFormat:@"当前软件版本为:%@",infoDic[@"CFBundleShortVersionString"]]; 
    UIAlertView *alertView = [[UIAlertView alloc]initWithTitle:@"软件版本" message:currentVersion delegate:nil cancelButtonTitle:@"确定" otherButtonTitles: nil nil]; 
    [alertView show]; 
}