I've been reading about pros/cons of programming with/without an interface builder and i want to try writing an app from scratch. however, even with a window based application it creates a xib file and i would like to remove this but not sure what to do after. just really need that jump start. Thanks!
|
|
Fundamentally you have to specify the appDelegate in UIApplicationMain() (in main.m), that is... from:
to:
then in MyAppDelegate's method application:didFinishLaunchingWithOptions: you have to manually create your UI:
...and so on |
|||||
|
|
There are few ways, one of the simple ones: Go to the project files navigator, look for
then look for this:
Remove this. Hope this help |
||||
|
|
|
You can create any project and while you add new viewController just uncheck the checkbox which says "With XIB for UserInterface" (shown below with a red arrow). This would allow you to create viewControllers without the XIB. But then you will have to put all the controls programmatically for the viewController
Dont use the viewController which comes in by default and add newViewController with the method mentioned above. Then start creating controls you want like UIButton, UILabel, etc using its allocation(alloc) and initialization(init) methods and set its frames. Then you need to set any attributes as per your requirement and then just add it as a subview to your main view of the viewwController. So it would be something like say adding a textField dynamically would be:
Hope this helps you. |
|||||||||
|
|
Hopefully following step will be useful.
//Get Rects of screen CGRect screenBounds = [[UIScreen mainScreen] bounds]; //Allocate Window m_window = [[UIWindow alloc] initWithFrame: screenBounds]; //Allocate custom Views m_view = [[MyView alloc] initWithFrame: screenBounds]; //Add View And make window visible [m_window addSubview: m_view]; [m_window makeKeyAndVisible]; return YES; -> I learned it from book iPhone 3D programming: Philip Rideout : O'Reilly publication. You should find above in goole books and read some pages for further understanding because only above explanation may not be enough. Moreover, After doing above steps you can make any number of view controllers and views without using xib...so refer to various programming guide documents provided by apple. Good Luck |
|||||
|
|
I've made some nib-less project templates for Xcode 4: MinimalisticXcodeTemplates (GitHub). |
|||
|
|
