1
嘿傢伙我需要幫助,在這種情況下,我需要轉移到另一個視圖使用模態賽格4秒後..但是當我跑這個這一切顯示的是一個空白查看..有什麼事是我做..即時通訊確實還是在Xcode一個新手任何/建議的想法確實是非常有幫助的..謝謝,這是我的代碼..xcode 4.3.2如何以編程方式更改視圖使用模態segue
-(void)onTimer
{
mainInt += 1;
if(mainInt == 4)
{
Game2ViewController *gameStart = [[Game2ViewController alloc] initWithNibName: @"Game2ViewController" bundle: nil];
[self presentModalViewController: gameStart animated: YES];
}
}
什麼是目的'mainInt'? – Cfr
它只是一個整數,我比較時間.. –
爲什麼你沒有設置計時器到4秒? – Cfr