I need another caption for navigationItem that I put in self.title. In self.title I have short name for back button and for toolbar buttons. I found simple solution, just create one more UIView attach to it UILable with my caption and then just
self.navigationItem.titleView = containerUIView;
After I returned from other UIView via back button my caption move in right side (i think it's because back button was there)... How can i fix it?
Thanks!