• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - UIToolbar 精确大小

[复制链接]
菜鸟教程小白 发表于 2022-12-12 18:30:00 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在尝试借助工具栏自定义我的 NavigationBar。 我以编程方式实现它如下:

UIToolbar* tools = [[UIToolbar alloc] initWithFrame: CGRectMake(0, 0, 100, 44.01)];

然后我将它添加到我的 NavigationBar。问题是我对边界产生了这种丑陋的影响:

navigationbar + toolbar

我尝试更改 y 和 height 值,但没有结果。 您有什么想法可以避免这种情况吗?

提前致谢,亚萨



Best Answer-推荐答案


我不会这样做。 您可以通过向 navigationItem.rightBarButtonItem 添加一个带有 2 个按钮的 View 来实现相同的效果。很简单:

// view that will hold the buttons
UIView* container = [[UIView alloc] init];

// create 1 button and add it to the container
UIButton* button = [[UIButton alloc] init........];
[container addSubview:button];


//create 2 button and add it to the container
button = [[UIButton alloc] init.........];
[container addSubview:button];


// now create a Bar button item
UIBarButtonItem* barButtonItem = [[UIBarButtonItem alloc] initWithCustomView:container];

// set the nav bar's right button item
self.navigationItem.rightBarButtonItem = barButtonItem;

关于ios - UIToolbar 精确大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8471469/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap