Created
March 18, 2013 16:25
-
-
Save anthonycvella/5188491 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Calls the loadGames method in CheckInViewController | |
UITabBarController *tabBarController = (UITabBarController *)self.presentingViewController; | |
UINavigationController *navController = [tabBarController.viewControllers objectAtIndex:0]; | |
CheckInViewController *checkInViewController = [navController.viewControllers objectAtIndex:0]; | |
SettingsTableViewController *settingsTableViewController = [navController.viewControllers objectAtIndex:0]; | |
[checkInViewController loadGames]; | |
[settingsTableViewController loadSettings]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment