I have created a working share extension to share a URL, and am using the default share extension pop up. Now, I'd like to change the bar button font of the iOS share extension pop up. I have tried both of the following attributed text commands in the ShareViewController viewDidLoad() without success:
UIBarButtonItem.appearance(whenContainedInInstancesOf: [UINavigationBar.classForCoder() as! UIAppearanceContainer.Type]).setTitleTextAttributes([NSForegroundColorAttributeName: color, NSFontAttributeName: newFont], for: .normal)
and
self.navigationController?.navigationBar.titleTextAttributes = [NSFontAttributeName:UIFont(name:"OfficeCodeProD-Regular", size: 12)!]
Any suggestions or pointers towards the appropriate resources is much appreciated!