我有一个非常顽固的UIToolbar,无论我尝试不同的方法,他都拒绝改变它的高度。
我已经看到了这个问题但它对我不起作用
Is there a way to change the height of a 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调整其高度?