Unable to update title and detail labels of navigationItem
Closed this issue · 2 comments
quanguyen commented
Hi,
From the sample NavigationController
(Programmatic
), I add my button on which when pressed, it sends a notification to update the title and detail labels of navigationItem
.
It's strange that I cannot!
My code is just like this:
(More details in my zip file)
Could you show me how I should solve this?
Regards,
quanguyen commented
Hi,
Have you got any updates on this strange issues?
Regards,
daniel-jonathan commented
Hey! To avoid any conflict issues, I needed to move title
and detail
to titleLabel.text
and detailLabel.text
. So you should update it like so:
navigationItem.titleLabel.text = "My App Name"
navigationItem.detailLabel.text = "Details of my app"
If you need any further assitance, please reopen this issue. Thank you!