MHWebViewController 1.1.2

MHWebViewController 1.1.2

Maintained by Michael Henry Pantaleonx.



  • By
  • Michael Henry Pantaleon

MHWebViewController

CICD Status Version Platform License Language: Swift

mhwebvc.gif

An Instagram inspired Web View Controller.

How to Install

Using Cocoapods, on your Podfile:

target 'MyApp' do
  pod 'MHWebViewController', '~> 1.0'
end

How to use

Using URL

import MHWebViewController

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

Using URLRequest

import MHWebViewController

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