,當我在Xcode中創建了一個遊戲,現在我決定要將菜單添加到它的菜單是第一個加載視圖,所以我改變黑屏改變視圖
self.viewController = [[[ViewController alloc] initWithNibName:@"ViewController" bundle:nil] autorelease];
到:
self.viewController = [[[MenuViewController alloc] initWithNibName:@"MenuViewController" bundle:nil] autorelease];
現在在我的比賽的看法,就是:ViewController.m並從菜單我去那裏:
-(IBAction)gogame:(id)sender {
UIViewController *Game = [[UIViewController alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:Game animated:YES];}
,因爲我需要到g香港專業教育學院的ViewController.ma名字我在.H改變.M:
@interface ViewController中以@interface GameViewController在.H
和@implementation的ViewController以@implementation GameViewController在.M現在
我使菜單「gogame」中的按鈕運行它,當我點擊按鈕時,它從菜單轉到黑屏,它不會崩潰或任何事情它只顯示狀態欄和黑屏。 xCode給我的唯一問題是在應用程序委託中:不兼容的指針類型從'MenuViewController *'分配給'GameViewController *'。
我不知道爲什麼這是行不通的而且我希望有人能夠剝奪我並告訴我如何解決這個問題。單獨感謝
Owh我認爲*遊戲我告訴它它是UIViewController'遊戲' – Kevin
不需要「遊戲」只是一個變量名,僅此而已。 –
Ø文件名是剛剛的ViewController還是讓我改變那些謝謝 – Kevin