我正在尝试借助工具栏自定义我的 NavigationBar。
我以编程方式实现它如下:
UIToolbar* tools = [[UIToolbar alloc] initWithFrame: CGRectMake(0, 0, 100, 44.01)];
然后我将它添加到我的 NavigationBar。问题是我对边界产生了这种丑陋的影响:
我尝试更改 y 和 height 值,但没有结果。
您有什么想法可以避免这种情况吗?
提前致谢,亚萨
Best Answer-推荐答案 strong>
我不会这样做。
您可以通过向 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/
|