美文网首页
iOS APP 应用名、版本号、build号、Bundle Id

iOS APP 应用名、版本号、build号、Bundle Id

作者: osnail | 来源:发表于2019-05-31 13:14 被阅读0次

    应用名

    [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleName"];
    

    版本号

    [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleShortVersionString"];
    

    build号

    [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleVersion"];
    

    Bundle Id

    [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleIdentifier"];
    

    相关文章

      网友评论

          本文标题:iOS APP 应用名、版本号、build号、Bundle Id

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