Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Strange ellipsis appearing in UINavigationBar

I have implemented a navigation item with a left button, a title view, and a right button. The back button is set to "hides".

On some left transitions, a blue ellipsis appears momentarily.

enter image description here

Any ideas as to what this is and how to get rid of it?

like image 718
Matt Avatar asked Oct 03 '13 05:10

Matt


1 Answers

I fixed this by not calling:

self.navigationItem.hidesBackButton = YES;

By setting a custom left bar button item, but not calling that method/setting it to NO, the ellipsis doesn't appear. I assume this is an Apple bug.

like image 82
livings124 Avatar answered Sep 27 '22 22:09

livings124