gpt4 book ai didi

iphone - 如何在 iPhone 中显示在应用程序启动时向下滚动的介绍屏幕?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:09:06 25 4
gpt4 key购买 nike

我在 Xcode 中设置了“启动图像”,在启动 iPhone 应用程序时显示“正在加载...”屏幕。现在,应用程序启动后,我想以编程方式显示滑出动画和相同的图像,以显示下面的应用程序内容 - 非常类似于 Dropbox for iPhone 所做的。最简单的方法是什么?

最佳答案

获取一个导航 Controller 并将其放入 appdelgate.xib 并加载后显示该类的 View 在进入 appdelegate.h 文件后创建导航 Controller 的对象然后进入 appdelegate.m 文件下面的代码来实现。

- (void)applicationDidFinishLaunching:(UIApplication *)application {    

// Override point for customization after app launch
[window addSubview:viewController.view];
[self performSelector:@selector(nextDetail) withObject:nil afterDelay:2];
[window makeKeyAndVisible];
}

-(void)nextDetail{
[window addSubview:nxtVctr.view];
[self animationCode];

}

-(void)animationCode{
CGContextRef context = UIGraphicsGetCurrentContext();
[UIView beginAnimations:nil context:context];
[UIView setAnimationTransition: UIViewAnimationTransitionFlipFromLeft forView:self.window cache:YES];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[UIView setAnimationDuration:0.5];
[UIView commitAnimations];
}

关于iphone - 如何在 iPhone 中显示在应用程序启动时向下滚动的介绍屏幕?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7763100/

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