This might be a dumb question.... I am trying to modify an example application created as a view based application...
My application will take a date as input and then do some calculations. I then want to output the data to a text view in a new view, or perhaps the same view if I can modify it to display the text view, but ideally a new view. Here is the code I am trying to use to create the new view: EasterCalcResultsView *easterCalcResultsView = [[EasterCalcResultsView alloc] initWithNibName:@"EasterCalcResultsView" bundle:nil]; [self.navigationController pushViewController:easterCalcResultsView animated:YES]; [easterCalcResultsView release]; It compiles fine, but when it reaches this code, nothing happens. EasterCalcResultsView.xib is the nib file I am trying use for the new view. Obviously I am missing something here. It might be as simple as that I cannot create a new view in a view based application, Or it might be that I am doing it totally wrong. So, I would appreciate any advice. Jennifer_______________________________________________ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com