Is this possible....
Is this possible....
- Subject: Is this possible....
- From: Jennifer Usher <email@hidden>
- Date: Tue, 24 Aug 2010 00:02:44 -0700
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 (email@hidden)
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:
This email sent to email@hidden