UITabBar定制

发布于 2024-08-27 04:22:44 字数 111 浏览 8 评论 0原文

这看起来像是一个遥远的事情,但有谁知道一种方法:

  1. 将 UITabBar 放置在屏幕的顶部
  2. 更改它的高度

欢迎您建议私有 API 方法

This looks like a long shot, but does anyone know of a way to:

  1. Position a UITabBar on the top part of the screen
  2. Change it's height

You are welcome to suggest private API methods

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

晌融 2024-09-03 04:22:44

您不需要私有 API,只需在您的 applicationDidFinishLaunching 方法中尝试此操作。

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];

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];
满意归宿 2024-09-03 04:22:44

我刚刚编写了一个类别来更改选项卡栏的高度,

您可以查看 UITabBar 高度iOS 5

希望它能帮助你:)

I just wrote a category to change the tabbar's height

you can check this out UITabBar height in iOS 5

hope it will help you :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文