Which method would you recommend to pass data from a child view back to it's parent view?
views:
1488answers:
1
+4
A:
Set a member variable in the child when its added to the parent
Send a message to [self superview]
Use an NSNotification
There are a number of ways to do this.
There are others, too, of course, but these are the three I use most often.
Ben Gottlieb
2008-10-16 13:24:46
Thanks, Ben. I'll read up on those.
matt
2008-10-16 13:43:34