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.