Search code examples
ios7uinavigationbar

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?


Solution

  • I made it go away by setting the tint colour to transparent:

    self.navigationBar.tintColor = [UIColor clearColor];