Skip to content

Instantly share code, notes, and snippets.

@openopen114
Created June 15, 2016 06:20
Show Gist options
  • Save openopen114/0f0c0feaaa68f1e3288e4c546b556686 to your computer and use it in GitHub Desktop.
Save openopen114/0f0c0feaaa68f1e3288e4c546b556686 to your computer and use it in GitHub Desktop.
var viaWebViewURL: String = ""
@IBOutlet weak var monitorSysWebView: UIWebView!
override func viewDidLoad() {
super.viewDidLoad()
NSLog(viaWebViewURL)
let url = NSURL(string: viaWebViewURL)
let request = NSURLRequest(URL: url!)
self.monitorSysWebView.loadRequest(request)
// Do any additional setup after loading the view.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment