OStack程序员社区-中国程序员成长平台

标题: ios - UIToolbar 精确大小 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 18:30
标题: ios - UIToolbar 精确大小

我正在尝试借助工具栏自定义我的 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/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4