gpt4 book ai didi

iOS 首次启动 View

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

我正在尝试放置第一个启动 View 。我已经尝试了一些东西,但这不起作用。

这是我所拥有的:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{

UIPageControl *pageControl = [UIPageControl appearance];
pageControl.pageIndicatorTintColor = [UIColor lightGrayColor];
pageControl.currentPageIndicatorTintColor = [UIColor blackColor];
pageControl.backgroundColor = [UIColor whiteColor];

return YES;

if ([[NSUserDefaults standardUserDefaults] boolForKey:@"yourCondition"])
{
//launch your first time view
self.viewController = [[viewController alloc] initWithNibName:@"viewController" bundle:nil];
}
else
{
//launch your default view
self.viewController = [[viewController alloc] initWithNibName:@"defaultViewController" bundle:nil];

[[NSUserDefaults standardUserDefaults] setBool:NO forKey:@"yourCondition"];
[[NSUserDefaults standardUserDefaults] synchronize];
}

}

不知何故,它说 viewController 不是 AppDelegate 的对象类型。有任何想法吗?

最佳答案

如果你什么都不做, Storyboard的初始 View Controller 就会出现。如果你想让其他事情发生,你要设置的是self.window.rootViewController .在这种情况下,您还需要手动创建和显示窗口。

关于iOS 首次启动 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23766644/

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