很多地方都會用到獲取當(dāng)前App的版本號厅篓。
- 獲取bundle Id信息:
[[NSBundle mainBundle] bundleIdentifier];
- 獲取版本號:
[[[NSBundle mainBundle]infoDictionary] objectForKey:@"CFBundleShortVersionString"];
- 獲取build號:
[[[NSBundle mainBundle]infoDictionary] objectForKey:@"CFBundleVersion"];
- 獲取App顯示名:
[[[NSBundle mainBundle]infoDictionary] objectForKey:@"CFBundleDisplayName"];
其實 [[NSBundle mainBundle]infoDictionary] 獲得的是一個字典,里邊放著Info.plist文件中的各種信息几蜻,根據(jù)不同的鍵去即可。除了以上常用的祟蚀,剩下的就不一一列舉了咏花,如果有需要自己查吧矗蕊,哈哈哈。