0

我正在设计一个应用程序,它首先显示一个条款和条件视图,然后在接受它时,它会移动到下一个视图,我使用 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 中有用户详细信息。

4

0 回答 0