我有一個主視圖控制器,它通過一個按鈕調用CategoryAndItemController。單視圖控制器中的兩個表視圖:在加載數據之前先顯示視圖
我有2個UITableViewController裏面的CategoryAndItemController。
這裏的viewDidLoad方法代碼:
if enter code here(categoriesController == nil) {
categoriesController = [[CFCategoriesTableViewController alloc] init];
}
if (itemsController == nil) {
itemsController = [[CFItemsTableViewController alloc] init];
}
[categoriesTable setDataSource:categoriesController];
[itemsTable setDataSource:itemsController];
[categoriesTable setDelegate:categoriesController];
[itemsTable setDelegate:itemsController];
categoriesController.view = categoriesController.tableView;
itemsController.view = itemsController.tableView;
我需要的是顯示CategoryAndItemController.view那麼對於數據請求一旦我這個觀點裏面。
現在,當我按下Button來調用CategoryAndItemController時,視圖將只在所有數據被提取後出現,並且在出現CategoryAndItemController.view之前會有2-3秒的時間。
我需要先顯示CategoryAndItemController.view,然後在數據加載時添加一個UIActivityIndicatorView。
在取出所有數據之前,不會顯示CategoryAndItemController。 :(該botton只是突出顯示,並沒有立即顯示下一個控制器 –
把所有的代碼裏面call_progress和我的支票更新回答 –
我可以給你我的代碼? –