CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:
$ gem install cocoapodsTo integrate WebViewController into your Xcode project using CocoaPods, specify it in your Podfile:
source'https://github.com/CocoaPods/Specs.git'platform:ios,'10.0'use_frameworks!target'<Your Target Name>'dopod'SHGWebViewController'endpod'SHGWebViewController','~> 4.0.0'Then, run the following command:
$ pod installimport WebViewControllerfunc webViewController(_ webViewController:WebViewController, setupAppearanceForMain view:UIView)func webViewControllerDidStartLoad(_ webViewController:WebViewController)func webViewControllerDidFinishLoad(_ webViewController:WebViewController)
// default color .gray
func webViewController(_ webViewController:WebViewController, disabledTintColorFor button:UIButton)-> UIColor
// default color .blue
func webViewController(_ webViewController:WebViewController, enabledTintColorFor button:UIButton)->UIColorsukov, gorjan5@hotmail.com
SHGWebViewController is available under the MIT license. See the LICENSE file for more info.

