iOS 获取app的版本号

 // - app 的 Bundle versions string, short

[[NSBundlemainBundle]objectForInfoDictionaryKey:@"CFBundleShortVersionString"]]



 // - app 的 build

 NSString *key =@"CFBundleVersion";

 NSString *currentVersion = [NSBundlemainBundle].infoDictionary[key];



App默认是有开启了多任务功能,而多任务功能是需要App支持所有方向,如果我们App是有需要支持多任务,则需要开启App对各个方向(上、下、左、右)的支持;如果App不需要开启多任务,则只需要将如下示意图的 requires full screen 勾选

Hidden starus bar  用来启动app的时候隐藏状态栏!

你可能感兴趣的:(iOS 获取app的版本号)