Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我为 iPhone 编写的一个简单的测试应用程序遇到了一个奇怪的问题。我有一个带有反面视图的视图。现在突然间,这个观点的标题翻了两倍。在 IB 中(我使用的是 xcode 4),这就是它的样子
IB的图片
最后,我得到了两倍高的标题栏。任何人的想法?
在此先感谢,翁贝托
导航项似乎有它的prompt设置。您必须将其设置为nil.
prompt
nil
self.navigationItem.prompt = nil;
或者,如果您可以访问导航栏,
navigationBar.navigationItem.prompt = nil;