简体   繁体   English

Flipsideview奇怪的行为

[英]Flipsideview strange behaviour

I am having a strange problem with a simple test app I am writing for iPhone. 我为iPhone编写的简单测试应用程序遇到了一个奇怪的问题。 I have a view with a flip side view. 我有一个侧面视图。 Now suddenly this view has the title two times high. 现在,此视图突然变成标题的两倍高。 In the IB (I am using xcode 4) this is how it is looking 在IB中(我正在使用xcode 4),这就是它的样子

Picture of the IB IB的图片

In the end I get a two times higher title bar. 最后,我获得了两倍的标题栏。 Anyone ideas? 有任何想法吗?

Thanks in advance, Umberto 预先感谢,翁贝托

The navigation item seems to have its prompt set. 导航项目似乎已设置其prompt You will have to set it to nil . 您将必须将其设置为nil

self.navigationItem.prompt = nil; 

or if you've access to the navigation bar, 或者如果您可以访问导航栏,

navigationBar.navigationItem.prompt = nil;

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM