This looks like a long shot, but does anyone know of a way to:
- Position a UITabBar on the top part of the screen
- Change it's height
You are welcome to suggest private API methods
See Question&Answers more detail:osThis looks like a long shot, but does anyone know of a way to:
You are welcome to suggest private API methods
See Question&Answers more detail:osyou 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];