Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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) Language: Swift

![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 MHWebViewController

present(url: URL(string: "https://iamkel.net")!, completion: nil)
```

### Using URLRequest
```swift
import MHWebViewController

present(urlRequest: URLRequest(url: URL(string: "https://iamkel.net")!), completion: nil)
```