Which method would you recommend to pass data from a child view back to it's parent view?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

There are a number of ways to do this.

  • Set a member variable in the child when its added to the parent
  • Send a message to [self superview]
  • Use an NSNotification
  • There are others, too, of course, but these are the three I use most often.

    link|improve this answer
    Thanks, Ben. I'll read up on those. – matt Oct 16 '08 at 13:43
    feedback

    Your Answer

     
    or
    required, but never shown

    Not the answer you're looking for? Browse other questions tagged or ask your own question.