Closed DamienLevel closed 7 years ago
On the next release, I will have an update for this. This conflict shouldn't exist. Thank you!
Great, thank you @danieldahan ! I'll check that when the update will be released.
Sorry, closed the wrong issue. This has been reopened.
Linked issue https://github.com/CosmicMind/Material/issues/722, and a solution will be out shortly. Thank you!
To avoid conflicts, the navigationItem.title
and navigationItem.detail
have been moved to navigationItem.titleLabel.text
and navigationItem.detailLabel.text
, respectively.
Hi everyone,
Thank you for your awesome lib !
I just want to use the ErrorTextField component in my app but since I've imported Material in my project, I can't change programmatically the title of my ViewController with
self.navigationItem.title
because your Extension override the variabletitle
.I don't want to use
self.title
to modify the title of my UINavigationBar because I have also a tabBar andself.title
modify the title of the tabBarItem.What can I do ?
Thanks.