I am new to iOS development and this is my first app. I am working on a Master-Detail iPad app.The flow of the app is: When the app starts,a list of 'departments' is displayed in a table.When the user selects a 'department',another table is displayed with a list of all the 'documents' for the selected department.When the user selects the 'document' cell,the document is opened in the detailview in read-only mode. I am loading the 'document' table only after the 'department' cell is selected. Is there any way I can populate the 'document' table when the app starts(in the app delegate?)
Asked
Active
Viewed 44 times
1 Answers
0
You can use Navigation based application and reload the table as per your requirement

Shamsudheen TK
- 30,739
- 9
- 69
- 102
-
Navigation based application sample tutorial is here http://gigaom.com/apple/iphone-dev-sessions-create-a-navigation-based-application/ – Shamsudheen TK Nov 08 '12 at 05:33
-
you can change the Uitableview delegates asper your conditions – Shamsudheen TK Nov 08 '12 at 05:33
-
then you can reload the document table and check the table in delegate – Shamsudheen TK Nov 08 '12 at 05:54
-
this will help you http://stackoverflow.com/questions/1416372/multiple-uitableviews-on-one-uiview – Shamsudheen TK Nov 08 '12 at 05:55