How would I go about presenting a view controller that doesn’t have a nib file?
I have a viewController without a nib and would like to have this view displayed when a user touches a button. Is it necessary to also have a nib file to do this?
thanks for any help.
I ended up using:
CameraViewController *cvc = [[CameraViewController alloc] init];
[self.navigationController pushViewController:cvc animated:YES];
[cvc release];
You can create the view programmatically instead of inside of the nib. Then a nib would not be needed.