Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/michaelhenry/mhwebviewcontroller
An Instagram inspired Web View Controller.
https://github.com/michaelhenry/mhwebviewcontroller
instagram ios swift uiwebviewcontroller webview
Last synced: 2 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 (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-02-12T15:47:06.000Z (11 months ago)
- Last Synced: 2024-09-22T03:01:30.967Z (4 months ago)
- Topics: instagram, ios, swift, uiwebviewcontroller, webview
- Language: Swift
- Size: 879 KB
- Stars: 74
- Watchers: 5
- Forks: 12
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MHWebViewController
[![CICD Status](https://img.shields.io/travis/michaelhenry/MHWebViewController.svg?style=flat)](https://travis-ci.org/michaelhenry/MHWebViewController) [![Version](https://img.shields.io/cocoapods/v/MHWebViewController.svg?style=flat)](http://cocoapods.org/pods/MHWebViewController) [![Platform](https://img.shields.io/cocoapods/p/MHWebViewController.svg?style=flat)](http://cocoapods.org/pods/MHWebViewController) [![License](https://img.shields.io/cocoapods/l/MHWebViewController.svg?style=flat)](http://cocoapods.org/pods/MHWebViewController)
![mhwebvc.gif](mhwebvc.gif)
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)
```