我有一個適用於iPad的主從應用程序。我正在使用故事板。當用戶選擇MasterViewcontroller
中的單元格時,數據將顯示在另一個表格中(UITableViewController
)。當用戶選擇第二個表格中的單元格時,我想在DetailViewController
中顯示相關信息。第二個表格顯示文件列表(PDF,XLS等)。所以,當用戶選擇abc.pdf
時,我希望在Detailviewcontroller
中顯示PDF文檔(以只讀模式)。DetailViewController在主從應用程序中顯示文檔
我發現了幾個樣品,它們直接從MasterViewcontroller
到detailviewcontroller
。但是我無法從第二張桌子上實現。導航如下所示:
Table1 (parent data)
|
V
Table2 (child data, which as I said is a list of documents)
|
V
Detailview (display the selected document in read-only mode)