2013-07-05 42 views
0

我在xcode上使用了故事板,我需要幫助在2個場景之間進行定時轉換。我希望遊戲在一個場景中打開,5秒後進入實際的遊戲場景。任何幫助將非常感激!謝謝!Xcode中場景之間的定時轉換

回答

0

可以使用的NSTimer爲:

在頭文件(.h)創建定時器:

NSTimer *timer; 

在.m文件,你可以使用此代碼: (以上@interface put #import「SecondView.h」)

-(void)viewScene { 
SecondView *second = [[SecondView alloc] initWithNibName:@"SecondView" bundle:nil]; 
second.modalTransitionStyle = UIModalTransitionStyleCrossDissolve; 
[self presentViewController:second animated:true completion:nil]; 
} 

timer = [NSTimer scheduledTimerWithTimeInterval:5.0 target:self selector:@selector(viewScene) userInfo:nil repeats:NO]; 

祝你好運!

+0

我沒有secondview.h文件,所以我通過編寫#import「SecondView.h」代碼得到一個錯誤 – user2555152

+0

SecondView.h就是一個例子。它代表您實際遊戲視圖的頭文件。 – Steven

0

如果您正在討論啓動畫面(圖片),那麼您只能在項目目錄中保存名爲Default.png,[email protected],[email protected]的三個圖像。有正常屏幕(320 * 480),3.5視網膜屏幕(640 * 960),4.0視網膜屏幕(640 * 1136)圖像。