1

4秒後にモーダルセグエを使用して別のビューに転送する必要があるこの状況で助けが必要です..しかし、これを実行すると、空白のビューしか表示されません.. 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 に答える