I am developing UINavigationController
based application. I placed the title to separate the pages. If I move to the first page , I set the title
self.navigationItem.title=@"First";
If I move to the second page
self.navigationItem.title=@"Second";
and it is working fine. But as I move to the third page, I'm setting the title yet it shows < Second Third
Anyone knows how to check if the UINavigationController
title is present or not.