gpt4 book ai didi

ios - 使用 UISwitch 隐藏 UIViewContoller?

转载 作者:行者123 更新时间:2023-11-28 22:14:11 26 4
gpt4 key购买 nike

您好,我目前正在开发一个应用程序,当您打开该应用程序时,一个带有 PageViewController 的 UIViewController 作为简短教程。我想知道您是否可以使用 UISwitch 来“隐藏”UIViewController,以便下次启动该应用程序时它直接进入“主视图”?

谢谢附言。英语是我的第二语言。

最佳答案

如果您只想在第一次显示它,则不需要 UISwitch。只需使用 NSUserDefaults 来记住您之前是否运行过。

在您的application:didFinishLaunchingWithOptions: 方法中:

if (![[NSUserDefaults standardUserDefaults] boolForKey:@"RunBefore"]) {
//show pagecontroller here
[[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"RunBefore"]

}

关于ios - 使用 UISwitch 隐藏 UIViewContoller?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22157370/

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