I am developing for the iPad and have created the standard UISplitViewController application using the template provided in Xcode - the standard UITableView on the left and the detailed view on the right.
I changed the template so that when the user selects a table cell from the left view, he places a new table view in it (still on the left side). This works without problems, but I would like to be able to update the existing detailed view from a new view of the table - it seems like the Apple Mail application works.
- I'm not trying to create multiple views on the detailed view (right). I read the documentation and saw a sample code provided by Apple.
I read / followed many tutorials, but can't get this relatively simple hierarchy of views to work.
Details: -
Using the detailViewController.detailItem = @"Test";RootView didSelectTableRowAtIndexPath in the delegate method updates the Detail view label. Using the same code in a recently migrated table view does not update the label - am I missing a checkpoint or something?
After posting, I tried using the protocols and delegates to update the shortcut on the detail view. The shortcut is updated correctly if you change it from the Root View using the new methods, however, when I click on the new view in the root mode (on the left), I can no longer update the label.
Ksoza source
share