English 中文(简体)
UINavig 主计长 Back Button看不见,但工作
原标题:UINavigationController Back Button not visible, but works
  • 时间:2010-03-21 02:39:05
  •  标签:
  • iphone

我有一个设想,即我的美国航空顾问失踪后纽顿(Lfthton),但挖掘左顿似乎仍在工作。

I found a similar problem posted here: UINavigationController s back button disappears? which was resolved by not setting the title to @"", but that s not my problem. Are there any other scenarios that would cause this behaviour?

最新资料:

在这种情况下,我认为等级是: My MainWindow 载有一门“UINavigationViewController”(见地图)。 然后,在使用通知背书背书架时,它装上了一架可调的书记员。 它提出这一看法,应当有背顿。

感谢。

最佳回答

Oh Man! 在一篇关于iphonedevsdk.com的文章中,我找到了答案。

由此可见,我的第一个观点(其中一张地图)没有标题(事实上,我藏匿了航行条码,因为我不想显示这一点)。 即使“WAS”这一标题后来认为,SDK并不值得注意。 我仍然不理解,为什么我能够利用该地区开展工作。

因此,即使我躲藏了第一个航道,我仍需要确定航标名称。

这样做!

感谢大家努力提供帮助。

问题回答

Other than the suggestions provided above. changing the Appearance of Navigation bar can also make Back button invisible.

UINavigation Bar.appearance().tintColor = UIColor.white

核实你是否将这种 color色带给与背景相混合的东西。

您的法典中是否优先于背顿项目——与左顿不一样——? i.e:

self.navigationItem.backBarButtonItem = ...

您是否在任何地方设定了<代码>hidesBackButton 财产? i.e:

self.navigationItem.hidesBackButton = YES;

我的情况类似(但并非完全相同),因为定制后纽特文正在消失,而arrow则可以见:。 甲型六氯环己烷

因此,如果任何人面临类似的情况,在定制的背顿文上消失背顿文,那么我的情况就是这样。

我将我的后台排在海关机车班以下:

private func customizeBackButton() {
    let backImage = UIImage(named: "BackButton")?.withRenderingMode(.alwaysOriginal)
    navigationBar.backIndicatorImage = backImage
    navigationBar.backIndicatorTransitionMaskImage = backImage
    
    UIBarButtonItem.appearance().setTitleTextAttributes([
      NSAttributedString.Key.foregroundColor: UIColor.panoStoryYellow,
      NSAttributedString.Key.font: UIFont(name: "Montserrat-SemiBold", size: 15)!
    ], for: .normal)
}

这使我感到:

“UINavigationControllertom

Now when I tapped on the back button text, the text disappeared: UINavigationController UINavigationBarButton back button disappears

我确信,我遵循了上述所有答案,例如确定名称,确保 color色有效等。 然而,这并不奏效。

在我的案件中,我甚至需要为<条码>明灯的背后状态确定如下特性:

UIBarButtonItem.appearance().setTitleTextAttributes([
      NSAttributedString.Key.foregroundColor: UIColor.panoStoryYellow,
      NSAttributedString.Key.font: UIFont(name: "Montserrat-SemiBold", size: 15)!
], for: .highlighted)

之后,背顿案文从未消失。





相关问题
Code sign Error

I have created a new iPhone application.I have two mach machines. I have created the certificate for running application in iPhone in one mac. Can I use the other mac for running the application in ...

ABPersonViewController Usage for displaying contact

Created a View based Project and added a contact to the AddressBook using ABAddressBookRef,ABRecordRef now i wanted to display the added contact ABPersonViewController is the method but how to use in ...

将音频Clips从Peter改为服务器

我不禁要问,那里是否有任何实例表明从Peit向服务器发送音响。 I m不关心电话或SIP风格的解决办法,只是一个简单的袖珍流程......

• 如何将搜查线重新定位?

我正试图把图像放在搜索条左边。 但是,问题始于这里,搜索条线不能重新布署。

热门标签