After we create a Single View App on Xcode 4.3.2, are there a couple of things we can do to make the project not use the .nib
(the .xib
) at all?
Right now we can click on the .xib
and change its custom class in Xcode to our FooView class, and do the initialization in initWithCoder
instead of initWithFrame
, and the .xib
is still being used, but almost not modified.
Can we change a couple of things to make the .xib
not used at all, and that the code will use initWithFrame
?