Skip to content

Instantly share code, notes, and snippets.

@jault3
jault3 / gist:9754798
Created March 25, 2014 03:39
TabBarController
PlaylistUITabBarController *tabBarController = [[PlaylistUITabBarController alloc] init];
//playlist ^^ is the subclass of UITabBarController
//these next two are just basic ViewControllers
_futureTrackViewController = [[FutureTrackViewController alloc] initWithNibName:nil bundle:nil];
_futureTrackViewController.delegate = self;
_futureTrackViewController.tabBarController = tabBarController;
_pastTrackViewController = [[PastTrackViewController alloc] initWithNibName:nil bundle:nil];
_pastTrackViewController.delegate = self;