UIToolBar高度不会改变

发布于 2024-11-07 10:11:43 字数 575 浏览 2 评论 0原文

我有一个非常顽固的 UIToolbar,无论我尝试如何不同的方法,它都拒绝改变其高度。

我已经看到这个问题,它对我不起作用

有没有办法改变 UIToolbar 的高度?

它是我拍照时cameraOverlayView 的工具栏。这是我尝试过的方法,但没有成功:

-调整其当前框架的高度

-为其框架创建一个新的 CGRect -

子类化 UIToolbar 并编辑其 drawRect 函数

- (void)drawRect:(CGRect)rect
{
  //Create a rectangle for the toolbar
  CGRect rectArea = CGRectMake(0, 0, 320, 70);
  [self setFrame:rectArea];

}

是否有一些我不知道的属性阻止 UIToolbar 调整其高度?

I've got a very stubborn UIToolbar, who refuses to change its height no matter how may different methods I try.

I've seen this question and it does not work for me

Is there a way to change the height of a UIToolbar?

It is a toolbar for my cameraOverlayView while taking a picture. here is what I've tried and has not worked:

-Adjusting its current frame's height

-Creating a new CGRect for its frame

-Subclassing UIToolbar and editing its drawRect function

- (void)drawRect:(CGRect)rect
{
  //Create a rectangle for the toolbar
  CGRect rectArea = CGRectMake(0, 0, 320, 70);
  [self setFrame:rectArea];

}

Is there some property I'm unaware of which prevents a UIToolbar from adjusting its height?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文