1

嘿伙计们,在这种情况下我需要帮助,我需要在 4 秒后使用模态 segue 转移到另一个视图.. 但是当我运行它时,它显示的只是一个空白视图.. 我做错了什么.. 我真的还是一个有xcode的新手任何想法/建议真的很有帮助..谢谢这是我的代码..

-(void)onTimer
{
    mainInt += 1;
    if(mainInt == 4)
    {
        Game2ViewController *gameStart = [[Game2ViewController alloc] initWithNibName: @"Game2ViewController" bundle: nil];
        [self presentModalViewController: gameStart animated: YES];
    }
}
4

1 回答 1

0
-(void)onTimer 
{ 
mainInt += 1; 
if(mainInt == 4) 
{ 
[self performSegueWithIdentifier:@"NextView" sender:self]; 
} 
} 
-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender 
{ 
if ([segue.identifier isEqualToString:@"NextView"]) 
{ Game2ViewController *gameStart = [[Game2ViewController alloc] init]; } }
于 2012-11-08T05:01:00.013 回答