NSString *key = (NSString *)kCFBundleVersionKey;
// 1.从Info.plist中取出版本号
NSString *version = [NSBundle mainBundle].infoDictionary[key];
// 2.从沙盒中取出上次存储的版本号
NSString *saveVersion = [[NSUserDefaults standardUserDefaults] objectForKey:key];
if ([version isEqualToString:saveVersion]) { // 不是第一次使用这个版本
// 显示状态栏
application.statusBarHidden = NO;
// 进入主界面
self.window.rootViewController = [[MainController alloc] init];
} else { // 版本号不一样:第一次使用新版本
// 将新版本号写入沙盒
[[NSUserDefaults standardUserDefaults] setObject:version forKey:key];
[[NSUserDefaults standardUserDefaults] synchronize];
// 显示版本新特性界面(进入引导页)
self.window.rootViewController = [[NewfeatureController alloc] init];
}