iOS获取当前app版本详解手机开发

    //软件版本   
    - (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];   
    }  

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/5189.html

(0)
上一篇 2021年7月16日
下一篇 2021年7月16日

相关推荐

发表回复

登录后才能评论