调整 unavigation 控制器中的内容大小
在某些情况下,我需要向我的应用程序添加搜索栏或选项卡栏。我使用 UIViewController 作为 UINavigationController 内容。更改 UIViewController 上的框架不会执行任何操作。
有人可以帮忙吗?
谢谢。
下面是在 UIViewController 的 initWithStyle 方法中失败的代码(在其他方法中也失败):
CGRect frame = self.view.frame;
self.view.frame = CGRectMake(0, 0, frame.size.width, frame.size.height - 49);
这可能不是完美的代码,但它至少应该移动视图。
In some cases I need to add a search bar or tab bar to my application. I use UIViewController for the UINavigationController content. Changing the frame on the UIViewControllers wont do anything.
Can anyone help?
Thank you.
Here's code which fails in the initWithStyle method of a UIViewController (Also fails in other methods):
CGRect frame = self.view.frame;
self.view.frame = CGRectMake(0, 0, frame.size.width, frame.size.height - 49);
That might not be perfect code but it should at least move the view.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我用来在 UINavigationController 下为应用程序全局的 AdBannerView 腾出空间的技术。也许你可以做类似的事情。
iPhone 应用中的全局 ADBannerView
Here is a technique I use to make room beneath a UINavigationController for an AdBannerView that is global to the app. Perhaps you can do something similar.
global ADBannerView in iPhone app