Possible Duplicate:
UISplitViewController Master / Detail communication
For iPad i am using UISplitViewController,for phone i m using navigation controller,i am unable to find a common way to pass object from master to detail view controller.
Possible Duplicate:
UISplitViewController Master / Detail communication
For iPad i am using UISplitViewController,for phone i m using navigation controller,i am unable to find a common way to pass object from master to detail view controller.
You're looking for what's called Delegation
. Check here for my previous SO Answer and quick example , also includes a Link to Apple's Documentation on Delegates and Data Sources. Objective C View to Controller Communication
Hope this helps.