-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Basic usage is not obvious. e.g. NSRangeException if selectedIndex not set.
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
RSTabBarViewController *tabvc = [[RSTabBarViewController alloc] init];
FirstViewController *vc1 = [[FirstViewController alloc] init];
SecondViewController *vc2 = [[SecondViewController alloc] init];
tabvc.viewControllers = @[vc1, vc2];
// !!!: required to avoid NSRangeException
tabvc.selectedIndex = 0;
self.window.rootViewController = tabvc;
[self.window makeKeyAndVisible];
return YES;
}
Metadata
Metadata
Assignees
Labels
No labels