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.
我在 UINavigation 栏中得到一个分隔线,我该如何删除它?
任何帮助将不胜感激。谢谢。更新 - 附加全屏截图。
如果您的目标是 iOS 5 和更新版本,您可以像这样为 UINavigationBar 设置任意背景图像
[navBar setBackgroundImage:[UIImage imageNamed:@"navBarBg"] forBarMetrics:UIBarMetricsDefault];
如果您需要支持 iOS 4,请尝试继承 UINavigationBar 并覆盖drawRect:方法。
drawRect: