I am presenting activity controller as below:
let vc = UIActivityViewController(activityItems: [SettingsProvider.shareUrl], applicationActivities: nil)
vc.modalTransitionStyle = .crossDissolve
vc.modalPresentationStyle = .overCurrentContext
self.present(vc, animated: true, completion: nil)
Also, I have set global tint color for the navigation bar, window tint color using appearance property.
When I click application such as message app, the controller takes app tint color for bar buttons except for MFMailViewController.
Is there any way to change tint colour of presented applications of UIActivityController.
Changing BarButton appearance would create a problem for my app. Any other solutions are appreciated.
please try this code for changing bar button color I think it will help you.
OR
please use this code I have use this code in objective c.