Created
June 15, 2016 06:20
-
-
Save openopen114/0f0c0feaaa68f1e3288e4c546b556686 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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