Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Objective C: How to reload tableview immediately after switching tabs?

I have 2 tabbars in my tabbar controller. I am currently in the second tabbar, after I click on a 'done' button, the tabbar controller needs to switch to the first tab and auto refresh the tableview in it.

I am able to execute on the first part

//Switch to the first tab's view
self.tabBarController.selectedViewController 
              = [self.tabBarController.viewControllers objectAtIndex:0];

However I need some advise on how to refresh the first view's tableview immediately after the switch is made. Any advise is appreciated.

EDIT: Updated requirement

Note: I do not want the view in the tabbar to reload everytime someone clicks on the tab. The reload should only happen in tab 1's tableview when

1) User is in tab 2

2) User clicks on 'Done button' in tab 2

3) App switches to tab 1 + Reloads the tableview in tab 1

Rationale is that the user will update some information in tab 2 which can only be viewed in tab 1. I want the user to be able to view the updated info immediately after switching to tab 1.

like image 335
Zhen Avatar asked Jun 18 '11 18:06

Zhen


2 Answers

You could just do [tableView reloadData] in the first view's viewDidAppear: method?

EDIT: Editing to add additional data.

General caveat here, Apple tends to frown upon having custom UI Patterns like this. I'm not sure what your app is trying to do here, but you should mostly stick with switching tabs only if the user explicitly clicks on that tab. Have you looked at modal view controllers if you want to present a screen and get some data back, instead of having it in a tab bar?

If not, I guess you could have a solution where the first tab is a delegate of the second tab. When the button is clicked, you could call [delegate doneBtnClicked:] so the control shifts to the first tab. In that function, you could use the setSelectedIndex: to your current tab and call reloadData: on the table view.

like image 76
Tejaswi Yerukalapudi Avatar answered Sep 24 '22 13:09

Tejaswi Yerukalapudi


You can send NSNotification after

pressing done button on second tab

and handle this notification on first tab controller.

like image 30
jamapag Avatar answered Sep 23 '22 13:09

jamapag