変更前にnilを設定してから、再度、設定すると反映されます。
UIBarButtonItem.appearance().setTitleTextAttributes(nil, for: .normal)
UIBarButtonItem.appearance().setTitleTextAttributes(nil, for: .highlighted)
let attributes = [NSAttributedString.Key.font: UIFont(name: "Helvetica-Bold", size: 0.1)!, NSAttributedString.Key.foregroundColor: UIColor.clear]
UIBarButtonItem.appearance().setTitleTextAttributes(attributes, for: .normal)
UIBarButtonItem.appearance().setTitleTextAttributes(attributes, for: .highlighted)