简体   繁体   中英

How to change tintColor bar button item when I share on Telegram?

I want to change bar button item when I share text.

My code is the following:

 let color = UIColor.red
    let newFont = UIFont(name: "Avenir Next", size: 16.0)!
    UIBarButtonItem.appearance(whenContainedInInstancesOf: [UINavigationBar.classForCoder() as! UIAppearanceContainer.Type]).setTitleTextAttributes([NSForegroundColorAttributeName: color, NSFontAttributeName: newFont], for: .normal)

that's what happened: 在此处输入图片说明

I just changed the button "Cancel". How can I change tintColor of a "Send" bar button?

这应该可以解决问题

self.navigationItem.rightBarButtonItem.tintColor = .red

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM