我正在设计一个应用程序,它首先显示条款和条件视图,然后接受它,它移动到下一个视图,我使用UIImage添加背景图像,以便我可以显示欢迎我的应用程序的图像,然后5秒后我已将视图更改为用户登录。我已经使用了没有故事板的基于视图的应用程序模板,我也启用了ARC。
我使用了以下代码:
接受条款和条件[accept.h,accept.m,accept.xib]:
- (IBAction)AcceptPractTandC:(id)sender
{
PractionerImage *PracImage = [[PractionerImage alloc] init];
[self presentViewController:PracImage animated:YES completion:nil];
}
显示5秒的图像并显示下一个视图[PractionerImage.h,PractionerImage.m,PractionerImage.xib]:
- (void)viewDidLoad
{
[super viewDidLoad];
count = 0;
PracImage = [NSTimer scheduledTimerWithTimeInterval:(1.0/1.0) target:self selector:@selector(PracImageSkip) userInfo:nil repeats:YES];
}
- (void)PracImageSkip
{
count += 1;
if (count > 5) {
ViewController *Intro = [[ViewController alloc]init];
[self presentViewController:Intro animated:YES completion:nil];
}
}
我在文件ViewController.m,ViewController.h,ViewController.xib中有用户详细信息。