Regarding my use case - Ayush comment
As long as I get a specific solution, I created a dummy view under the navigation bar (below the back button) to display a hint. Here is the code.
let v = UIView(frame: CGRectMake(0, 0, 50, 0)) view.addSubview(v) let tipText = "Here it the back button" EasyTipView.showAnimated(true, forView: v, withinSuperview: view, text:tipText, preferences: nil, delegate: self)
source share