UIToolBar 上的按钮居中

发布于 2024-11-26 15:36:52 字数 297 浏览 1 评论 0原文

我需要将 B 项相对于工具栏居中。我在界面生成器中创建以下内容:

Item B in the center

它工作正常,直到我动态插入其他项目:

Item B not in the center

如何保持 B 项的居中位置?一种想法是使用固定空格键按钮项目,但我不能,因为工具栏的长度也会变化(针对不同的方向)。

I need to center the B item with respect to the toolbar. I create the following in the interface builder:

Item B in the center

It works fine until I dynamically insert additional items:

Item B not in the center

How can I maintain the centralized position of the B item? One idea was to use the Fixed Space Bar Button Items, but I couldn't, because the length of the toolbar changes as well (for different orientations).

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

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

发布评论

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

评论(1

﹏雨一样淡蓝的深情 2024-12-03 15:36:52

每次标签栏更改大小时都可以使用它:

//lets be tabBar the big view and buttonB the.. well, button B
[buttonB setCenter:CGPointMake(tabBar.frame.size.height/2, tabBar.frame.size.width/2);

You can use this every time the tab bar change the size:

//lets be tabBar the big view and buttonB the.. well, button B
[buttonB setCenter:CGPointMake(tabBar.frame.size.height/2, tabBar.frame.size.width/2);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文