ios - UIToolbar 精确大小
<p><p>我正在尝试借助工具栏自定义我的 NavigationBar。
我以编程方式实现它如下:</p>
<pre><code>UIToolbar* tools = [ initWithFrame: CGRectMake(0, 0, 100, 44.01)];
</code></pre>
<p>然后我将它添加到我的 NavigationBar。问题是我对边界产生了这种丑陋的影响:</p>
<p> <img src="/image/6hASp.png" alt="navigationbar + toolbar"/> </p>
<p>我尝试更改 y 和 height 值,但没有结果。
您有什么想法可以避免这种情况吗?</p>
<p>提前致谢,亚萨</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我不会这样做。
您可以通过向 navigationItem.rightBarButtonItem 添加一个带有 2 个按钮的 View 来实现相同的效果。很简单:</p>
<pre><code>// view that will hold the buttons
UIView* container = [ init];
// create 1 button and add it to the container
UIButton* button = [ init........];
;
//create 2 button and add it to the container
button = [ init.........];
;
// now create a Bar button item
UIBarButtonItem* barButtonItem = [ initWithCustomView:container];
// set the nav bar's right button item
self.navigationItem.rightBarButtonItem = barButtonItem;
</code></pre></p>
<p style="font-size: 20px;">关于ios - UIToolbar 精确大小,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/8471469/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/8471469/
</a>
</p>
页:
[1]