views:

112

answers:

1

I have a Tab bar App with four tabs. Each tab loads the same UITableViewController.

I would like to fill the table based on which tab is tapped.

How?

+1  A: 

Use:

if (self.tabBarController.selectedIndex == 0) ...

Etc.

Paul Lynch
Thank you. This worked :)
Blizmo