Hello,
I have a question regarding to communication between two Views.
My tableview creates a view in which the user can enter a text. How do
I get the text from the View to my tableview?
The View is created in the following was in my tableview:
- (IBAction)addAction:(id)sender{
if (ncvController == nil)
{
self.ncvController = [[NewCourseViewController alloc]
initWithNibName:@"NewCourseViewController" bundle:nil];
}
[[self navigationController] pushViewController:ncvController
animated:YES];
}
Can someone please give me an example?
Thank you so much
twickl
_______________________________________________
Cocoa-dev mailing list ([email protected])
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 [EMAIL PROTECTED]