how to remove back button title from navigation bar in ios code example
Example 1: remove title only back button swift
navigationItem.backBarButtonItem = UIBarButtonItem(title: "", style: .plain, target: nil, action: nil)
Example 2: remove back button from navigation bar swift
self.navigationItem.leftBarButtonItem = nil;