#[](https://travis-ci.org/Arief Budi Santoso/ICAppBrowser)
To run the example project, clone the repo, and run pod install from the Example directory first.
For Navigation Controller
let webVC = ICAppBrowserVC(urlString: "https://www.google.com")
webVC.delegate = self
self.navigationController?.pushViewController(webVC, animated: true)For Present Controller default
let webVC = ICAppBrowserModalVC(urlString: "https://www.google.com")
self.present(webVC, animated: true, completion: nil)For Present Controller Themes available themes : dark, lightBlack, lightBlue available dismissbutton : arrow, cross
let webVC = ICAppBrowserModalVC(urlString: "https://www.google.com", theme: .dark, dismissButtonStyle: .arrow)
self.present(webVC, animated: true, completion: nil)swift 3ICAppBrowser is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "ICAppBrowser", :git => 'https://github.com/ioscodigo/ICAppBrowser.git'Arief Budi Santoso, [email protected]
ICAppBrowser is available under the MIT license. See the LICENSE file for more info.