如何在 iphone 应用程序中设置 UINavigationBar 的高度

2023-06-10移动开发问题
7

本文介绍了如何在 iphone 应用程序中设置 UINavigationBar 的高度的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我使用 UINavigationController 的典型情况,我想让导航栏高一点.设置它的边界和框架似乎没有什么区别,我正在使用这个代码

Im using a typical situation with UINavigationController, id like to make the navigation bar a bit taller. setting its bounds and frame dont seem to make a difference, im using this code

    //set up the navigation
UINavigationController *navigationController = [UINavigationController new];

[navigationController.navigationBar setBarStyle:UIBarStyleBlack];
[navigationController.navigationBar setTintColor:[UIColor purpleColor]];
[navigationController.navigationBar setBounds:CGRectMake(0.0, 0.0, 480.0, 100.0)];
[navigationController.navigationBar setFrame:CGRectMake(0.0, 0.0, 480.0, 100.0)];

但无济于事.有任何想法吗?

but to no avail. any ideas?

推荐答案

我不认为你可以改变导航栏的高度.除非您添加提示消息...但这不是您想要的.

I don't think you can change the height of a navigation bar. Except when you add a prompt message... But that's not what you want.

框架是视图的可见区域.Bounds 是内部区域.通常它的原点为 (0, 0) 并且与框架一样宽和高.但是,当内容超出可见区域时(例如 UIScrollView),边界可能会更大(并且原点不同).您很少看到小于其各自框架的边界.

Frame is the visible area of a view. Bounds is the internal area. Usually this has an origin of (0, 0) and is as wide and high as the frame. However, when the content exceeds the visible area (like with a UIScrollView) the bounds can be larger (and the origin different). You rarely see bounds that are smaller than their respective frames.

查看您的代码,[UINavigationController new] 是关于什么的?你应该做 [[UINavigationController alloc] init],不是吗?

Looking at your code, what is [UINavigationController new] about? You should do [[UINavigationController alloc] init], shouldn't you?

另外,你所做的并不是真正的子类化......

Also, what you are doing is not really subclassing...

这篇关于如何在 iphone 应用程序中设置 UINavigationBar 的高度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

硬件音量按钮更改应用程序音量
Hardware Volume buttons change in app volume(硬件音量按钮更改应用程序音量)...
2024-08-12 移动开发问题
10

Cocos2d - 如何检查不同层中对象之间的交集
Cocos2d - How to check for Intersection between objects in different layers(Cocos2d - 如何检查不同层中对象之间的交集)...
2024-08-12 移动开发问题
8

突出显示朗读文本(在 iPhone 的故事书类型应用程序中)
Highlight Read-Along Text (in a storybook type app for iPhone)(突出显示朗读文本(在 iPhone 的故事书类型应用程序中))...
2024-08-12 移动开发问题
9

Cocos2D + 仅禁用 Retina iPad 图形
Cocos2D + Disabling only Retina iPad Graphics(Cocos2D + 仅禁用 Retina iPad 图形)...
2024-08-12 移动开发问题
10

正确的 cocos2d 场景重启?
Proper cocos2d scene restart?(正确的 cocos2d 场景重启?)...
2024-08-12 移动开发问题
7

[ios.cocos2d+box2d]如何禁用自动旋转?
[ios.cocos2d+box2d]how to disable auto-rotation?([ios.cocos2d+box2d]如何禁用自动旋转?)...
2024-08-12 移动开发问题
7