gpt4 book ai didi

ios - 在 App 的整个生命周期中仅显示一次 View

转载 作者:行者123 更新时间:2023-12-01 19:58:25 25 4
gpt4 key购买 nike

我正在开发一个购物应用程序,在应用程序启动时,它会显示注册 View ,一旦单击跳过按钮,它就会导航到主页 View 。我想在应用程序的整个生命周期中只显示一次注册 View 。

最佳答案

在此处添加我用来在整个应用程序生命周期中仅显示一次演练屏幕的代码。这可能对您有用。

   // show walkthough for first time only (first time the app launches after download).
bool shownFlag = [[NSUserDefaults standardUserDefaults] boolForKey:@"walkthroughShownOnce"];
if(!shownFlag){
[[NSUserDefaults standardUserDefaults] setBool:TRUE forKey:@"walkthroughShownOnce"];
[[NSUserDefaults standardUserDefaults] synchronize];
WalkThroughViewController *vc=[[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"WalkThroughViewController"];
[self.window makeKeyAndVisible];
[self.window setRootViewController:vc];
}else{
//if not walkthough go and check other task

}

关于ios - 在 App 的整个生命周期中仅显示一次 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41196947/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com