We are using xcode 8.0 . We are facing problem for custom navigation bar button item. Custom bar button not showing in navigation .
let button = UIButton.init(type: .custom)
button.titleLabel?.text = "dsfjksdf"
button.titleLabel?.textColor = UIColor.black;
button.addTarget(self, action:#selector(GigDatesViewController.btnNext), for: UIControlEvents.touchUpInside)
button.frame = CGRect.init(x: 0, y: 0, width: 30, height: 30)
let barButton = UIBarButtonItem.init(customView: button)
navigationItem.leftBarButtonItem = barButton