Updated response for iOS 10 API
SFSafariViewController now has the preferredBarTintColor and preferredControlTintColor properties to control how toolbars look.
Original answer
SFSafariViewController displays the process. You can only change the hue color, but not the dash or hue style.
To set the hue color, set the color of the safari shades as follows:
let sfController = SFSafariViewController(URL: url, entersReaderIfAvailable: true) sfController.view.tintColor = UIColor.redColor() navigationController?.showViewController(sfController, sender: self)
Leo natan
source share