Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dzlobin/GDWebViewController
WKWebview browser view controller in Swift
https://github.com/dzlobin/GDWebViewController
Last synced: 1 day ago
JSON representation
WKWebview browser view controller in Swift
- Host: GitHub
- URL: https://github.com/dzlobin/GDWebViewController
- Owner: dzlobin
- License: mit
- Fork: true (coffellas-cto/GDWebViewController)
- Created: 2015-10-18T19:44:20.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-19T11:31:15.000Z (about 9 years ago)
- Last Synced: 2024-10-10T06:10:42.628Z (about 1 month ago)
- Language: Swift
- Size: 180 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
GDWebViewController v1.1
===================A simple view controller for navigating web pages using WKWebView. iOS 8.1+.
Supports Swift 2.0 and iOS 9 SDK.
For Swift 1.2 support go [here](https://github.com/coffellas-cto/GDWebViewController/releases/tag/v1.0)![App Screenshots](https://cloud.githubusercontent.com/assets/3193877/7665617/29a8672a-fbc9-11e4-98cf-41fec0f6c403.gif)
## Description
- A browser-like view controller to support web pages navigation in your Swift app.
- Supports back-forward navigation and page refresh action.
- Supports back-forward swipe gestures.
- Has built-in activity indicators (both progress view and activity indicator).## Installation
Just grab two files `GDWebViewController.swift` and `GDWebViewNavigationToolbar.swift` into your project.
You can download `GDWebBrowserClient` project as well to see how it can be used.## GDWebViewController Interface
####Properties
`weak var delegate: GDWebViewControllerDelegate?`
An object to serve as a delegate which conforms to GDWebViewNavigationToolbarDelegate protocol.`var progressIndicatorStyle: GDWebViewControllerProgressIndicatorStyle = .Both`
The style of progress indication visualization. Can be one of four values: .ActivityIndicator, .ProgressView, .Both, .None`var allowsBackForwardNavigationGestures: Bool`
A Boolean value indicating whether horizontal swipe gestures will trigger back-forward list navigations. The default value is false.`var showsToolbar: Bool`
A boolean value if set to true shows the toolbar; otherwise, hides it.`var showsStopRefreshControl: Bool`
A boolean value if set to true shows the refresh control (or stop control while loading) on the toolbar; otherwise, hides it.`var toolbar: GDWebViewNavigationToolbar`
The navigation toolbar object (read-only).
####Methods
`func loadURLWithString(URLString: String)`
Navigates to an URL created from provided string.`func loadURL(URL: NSURL, cachePolicy: NSURLRequestCachePolicy = .UseProtocolCachePolicy, timeoutInterval: NSTimeInterval = 0)`
Navigates to the URL.`func showsToolbar(show: Bool, animated: Bool)`
Shows or hides toolbar.####GDWebViewControllerDelegate Methods
```swift
@objc protocol GDWebViewControllerDelegate {
optional func webViewController(webViewController: GDWebViewController, didChangeURL newURL: NSURL?)
optional func webViewController(webViewController: GDWebViewController, didChangeTitle newTitle: NSString?)
optional func webViewController(webViewController: GDWebViewController, decidePolicyForNavigationAction navigationAction: WKNavigationAction, decisionHandler: (WKNavigationActionPolicy) -> Void)
optional func webViewController(webViewController: GDWebViewController, decidePolicyForNavigationResponse navigationResponse: WKNavigationResponse, decisionHandler: (WKNavigationResponsePolicy) -> Void);
optional func webViewController(webViewController: GDWebViewController, didReceiveAuthenticationChallenge challenge: NSURLAuthenticationChallenge, completionHandler: (NSURLSessionAuthChallengeDisposition, NSURLCredential!) -> Void);
}
```Notice:
You must do `import WebKit` if you use last three methods from `GDWebViewControllerDelegate` description.## GDWebViewNavigationToolbar Interface
####Properties
`var toolbarTintColor: UIColor?`
The tint color to apply to the toolbar button items.`var toolbarBackgroundColor: UIColor?`
The toolbar's background color.`var toolbarTranslucent: Bool`
A Boolean value that indicates whether the toolbar is translucent (true) or not (false).## License
Published under MIT license. If you have any feature requests, please create an issue. Smart pull requests are also welcome.