Hallo allemaal,
Ik lees op het moment verschillende boeken over het maken van apps voor de iPhone.
In iPhone and iPad Game Development For Dummies staat dit stukje;
In Xcode, double-click on MainWindow.xib to open it in Interface Builder.
Click on the Navigation Controller object in the document window to select it.
Open the Attributes Inspector window by pressing Ô+1. Uncheck the Shows Navigation Bar check box at the top of the Attributes Inspector.
Save the file by pressing Ô+S.
Youre done with Interface Builder for now. Go back to Xcode and click the Build and Run button.
Select all of the text, and replace it with the following code:
#import RootViewController.h
@implementation RootViewController
@end
Once youve done that, open RootViewController.h, select all of the text, and replace it with the following code:
#import <UIKit/UIKit.h> @interface RootViewController : UIViewController { }
@end
Finally, press the Build and Go button at the top of the window.
Ik gebruik Xcode 4. En zodra ik op Run klik krijg ik een SIGABRT.
Ik hoop dat jullie mij kunnen helpen.
Alvast bedankt!