you don't need private API, just try this in your applicationDidFinishLaunching method.
controller = [[UITabBarController alloc] initWithNibName:nil bundle:nil];
HeadlinesViewController *headlines = [[HeadlinesViewController alloc] init];
OpinionsViewController *opinions = [[OpinionsViewController alloc] init];
controller.viewControllers = [NSArray arrayWithObjects:headlines, opinions, nil];
// set your position , width and height there
controller.tabBar.frame = CGRectMake(0, 20, 320, 50);
[window addSubview:controller.view ];
[window makeKeyAndVisible];
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…