我创建了一个工作共享扩展程序来共享一个URL,并使用弹出的默认共享扩展名。现在,我想更改iOS共享扩展程序的栏按钮字体弹出。我在ShareViewController viewDidLoad()中尝试了以下两个属性文本命令,但没有成功:
UIBarButtonItem.appearance(whenContainedInInstancesOf: [UINavigationBar.classForCoder() as! UIAppearanceContainer.Type]).setTitleTextAttributes([NSForegroundColorAttributeName: color, NSFontAttributeName: newFont], for: .normal)
和
self.navigationController?.navigationBar.titleTextAttributes = [NSFontAttributeName:UIFont(name:"OfficeCodeProD-Regular", size: 12)!]
非常感谢任何有关适当资源的建议或指示!