Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do you pass an object to a view controller, right before you push the view to show it?

share|improve this question

1 Answer

up vote 5 down vote accepted

Define a property in the view controller, synthesize it, then assign viewController.propertyName = someObject;. Simple as a dimple.

share|improve this answer
Not when trying to add a modal view controller...there's actually no way of setting the properties! – OOP_Master Nov 22 '10 at 23:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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