https://github.com/michaelhenry/mhwebviewcontroller
An Instagram inspired Web View Controller.
https://github.com/michaelhenry/mhwebviewcontroller
instagram ios swift uiwebviewcontroller webview
Last synced: 3 months ago
JSON representation
An Instagram inspired Web View Controller.
- Host: GitHub
- URL: https://github.com/michaelhenry/mhwebviewcontroller
- Owner: michaelhenry
- License: mit
- Created: 2019-05-06T05:35:29.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-02-12T15:47:06.000Z (over 1 year ago)
- Last Synced: 2025-04-08T18:04:04.769Z (3 months ago)
- Topics: instagram, ios, swift, uiwebviewcontroller, webview
- Language: Swift
- Size: 879 KB
- Stars: 74
- Watchers: 4
- Forks: 12
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MHWebViewController
[](https://travis-ci.org/michaelhenry/MHWebViewController) [](http://cocoapods.org/pods/MHWebViewController) [](http://cocoapods.org/pods/MHWebViewController) [](http://cocoapods.org/pods/MHWebViewController)

An Instagram inspired Web View Controller.
## How to Install
### Using Cocoapods, on your Podfile:
```ruby
target 'MyApp' do
pod 'MHWebViewController', '~> 1.0'
end
```## How to use
### Using URL
```swift
import MHWebViewControllerpresent(url: URL(string: "https://iamkel.net")!, completion: nil)
```### Using URLRequest
```swift
import MHWebViewControllerpresent(urlRequest: URLRequest(url: URL(string: "https://iamkel.net")!), completion: nil)
```